

/* ═══════════════════════════════════════════
   HERO HOMEPAGE
   ═══════════════════════════════════════════ */

.fl-col-group.fl-node-860ngcxhbtrd {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* ═══════════════════════════════════════════
   TAG / SPARKLES BADGE
   ═══════════════════════════════════════════ */

.tag-sparkles {
    margin-bottom: 24px;
}

.tag-sparkles .fl-heading .fl-heading-text {
    font-family: "Plus Jakarta Sans", sans-serif;
    padding: 8px 16px 8px 40px;
    background-color: rgb(0 217 165 / 0.1);
    color: rgb(26 255 195) !important;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    width: max-content;
    position: relative;
    border: 1px solid #00d9a54d;
}

.tag-sparkles .fl-heading .fl-heading-text::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 8px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231AFFC3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 3-1.912 5.813a2 2 0 0 1-1.275 1.275L3 12l5.813 1.912a2 2 0 0 1 1.275 1.275L12 21l1.912-5.813a2 2 0 0 1 1.275-1.275L21 12l-5.813-1.912a2 2 0 0 1-1.275-1.275L12 3Z'%3E%3C/path%3E%3Cpath d='M5 3v4'%3E%3C/path%3E%3Cpath d='M19 17v4'%3E%3C/path%3E%3Cpath d='M3 5h4'%3E%3C/path%3E%3Cpath d='M17 19h4'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* ═══════════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════════ */

.d-block { display: block; }
.text-color-secondary { color: #4dffd0 !important; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }

/* ═══════════════════════════════════════════
   HERO TYPOGRAPHY
   ═══════════════════════════════════════════ */

.main-heading h1 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 79px;
}

.nh-hero-content p {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: #d1d4dc !important;
    font-size: 20px;
    line-height: 28px;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════════════════════════════════════
   HERO — Mesh gradient + floating orbs
   ═══════════════════════════════════════════ */

.harper-hero-orbs {
    position: relative !important;
    overflow: hidden;
}

.harper-hero-orbs::before {
    content: '';
    position: absolute;
    top: 80px;
    right: 10%;
    width: 256px;
    height: 256px;
    border-radius: 50%;
    background: rgba(0, 217, 165, 0.2);
    filter: blur(64px);
    animation: harper-float 6s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.harper-hero-orbs::after {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 5%;
    width: 192px;
    height: 192px;
    border-radius: 50%;
    background: rgba(0, 217, 165, 0.1);
    filter: blur(48px);
    animation: harper-float 6s ease-in-out infinite;
    animation-delay: 2s;
    z-index: 1;
    pointer-events: none;
}

.harper-hero-orbs .fl-row-content-wrap {
    position: relative;
}

.harper-hero-orbs .fl-row-content-wrap::before {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        radial-gradient(at 40% 20%, rgba(0, 217, 165, 0.12) 0px, transparent 50%),
        radial-gradient(at 80% 0%,  rgba(167, 139, 250, 0.08) 0px, transparent 50%),
        radial-gradient(at 90% 90%, rgba(0, 217, 165, 0.06) 0px, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.harper-hero-orbs .fl-row-content {
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hero background photo — column is the full-bleed/full-height layer, photo just fills it */
.harper-hero-orbs-column-img {
    position: absolute !important;
    top: 0;
    left: 50%;
    width: 100vw !important;
    height: 100%;
    max-width: none !important;
    transform: translateX(-50%);
    margin: 0;
    padding: 0 !important;
    z-index: -1;
    pointer-events: none;
}
.harper-hero-orbs-column-img .fl-col-content {
    width: 100% !important;
    height: 100%;
}
.harper-hero-orbs-img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0.15;
}
.harper-hero-orbs-img .fl-photo-content {
    width: 100%;
    height: 100%;
}
.harper-hero-orbs-img .fl-photo-img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Mobile: pull the hero photo up and overfill so the crop stays centred */
@media (max-width: 767px) {
    .harper-hero-orbs-column-img {
        top: -50px !important;
        height: 108% !important;
    }
}

@keyframes harper-float {
    0%, 100% { transform: translateY(0px); }
    50%      { transform: translateY(-20px); }
}

/* ═══════════════════════════════════════════
   SPLIT SECTION — Employers / Candidates
   ═══════════════════════════════════════════ */

/* Hide image modules */
.fl-node-8uj7pgib6x03,
.fl-node-ajogc85fv21w {
    display: none !important;
}

/* Row — full width */
.fl-node-o9hwpnqvsdru,
.fl-node-o9hwpnqvsdru .fl-row-content-wrap,
.fl-node-o9hwpnqvsdru .fl-row-content {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.fl-node-o9hwpnqvsdru .fl-col-group {
    display: flex !important;
    align-items: stretch !important;
    margin: 0 !important;
    width: 100% !important;
    gap: 0 !important;
}

.fl-node-o9hwpnqvsdru .fl-col {
    float: none !important;
    flex: 1 !important;
    margin: 0 !important;
}

/* Left column — Employers */
.fl-node-56qnv8kpdm7y {
    position: relative !important;
    background-size: cover !important;
    background-position: center !important;
}

.fl-node-56qnv8kpdm7y::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 200, 150, 0.88);
    z-index: 1;
}

/* Right column — Candidates */
.fl-node-6pftxv05i7y1 {
    position: relative !important;
    background-size: cover !important;
    background-position: center !important;
    box-shadow: -4px 0 0 0 #00D9A5 !important;
}

.fl-node-6pftxv05i7y1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 45, 70, 0.85);
    z-index: 1;
}

/* Both columns — shared .fl-col-content (mobile first) */
.fl-node-56qnv8kpdm7y .fl-col-content,
.fl-node-6pftxv05i7y1 .fl-col-content {
    position: relative;
    z-index: 2;
    padding: 64px 24px !important;
    margin: 0 !important;
    height: 100% !important;
    box-sizing: border-box !important;
}

/* Text white in both columns */
.fl-node-56qnv8kpdm7y *,
.fl-node-6pftxv05i7y1 * {
    color: #fff !important;
}

.fl-node-6pftxv05i7y1 h5 {
    color: #00D9A5 !important;
}

/* Buttons — shared */
.fl-node-56qnv8kpdm7y .fl-button,
.fl-node-6pftxv05i7y1 .fl-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 24px !important;
}

.fl-node-56qnv8kpdm7y .fl-button .fl-button-text { color: rgb(0, 150, 115) !important; }
.fl-node-6pftxv05i7y1 .fl-button .fl-button-text { color: #ffffff !important; }

.fl-node-56qnv8kpdm7y .fl-button-icon,
.fl-node-6pftxv05i7y1 .fl-button-icon {
    display: none !important;
}

.fl-node-56qnv8kpdm7y .fl-button::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23009673' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'%3E%3C/path%3E%3Cpath d='m12 5 7 7-7 7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}

.fl-node-6pftxv05i7y1 .fl-button::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'%3E%3C/path%3E%3Cpath d='m12 5 7 7-7 7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}

/* Icon List — mobile first */
.fl-node-56qnv8kpdm7y .pp-icon-list-items,
.fl-node-6pftxv05i7y1 .pp-icon-list-items {
    margin-top: 26px !important;
    margin-bottom: 26px !important;
}

.fl-node-56qnv8kpdm7y .pp-icon-list-item:last-child,
.fl-node-6pftxv05i7y1 .pp-icon-list-item:last-child {
    margin-bottom: 0 !important;
}

.fl-node-56qnv8kpdm7y .pp-list-item-icon,
.fl-node-6pftxv05i7y1 .pp-list-item-icon {
    display: none !important;
}

.fl-node-56qnv8kpdm7y .pp-icon-list-item,
.fl-node-6pftxv05i7y1 .pp-icon-list-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
}

.fl-node-56qnv8kpdm7y .pp-icon-list-item::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'%3E%3C/path%3E%3Cpath d='m9 11 3 3L22 4'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.fl-node-6pftxv05i7y1 .pp-icon-list-item::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300D9A5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'%3E%3C/path%3E%3Cpath d='m9 11 3 3L22 4'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.fl-node-56qnv8kpdm7y .pp-list-item-text,
.fl-node-6pftxv05i7y1 .pp-list-item-text {
    font-size: 16px !important;
    line-height: 24px !important;
}

.fl-node-56qnv8kpdm7y .pp-list-item-text { color: #ECF8F4 !important; }
.fl-node-6pftxv05i7y1 .pp-list-item-text { color: #E4E6EB !important; }

/* ═══════════════════════════════════════════
   SPECIALISTS SECTION HEADING
   ═══════════════════════════════════════════ */

.fl-node-0sbuphawqgck .fl-heading-text,
.fl-node-0sbuphawqgck h2.fl-heading-text,
.fl-node-56qnv8kpdm7y h2.fl-heading-text.fl-node-0sbuphawqgck,
.fl-node-6pftxv05i7y1 h2.fl-heading-text.fl-node-0sbuphawqgck,
.fl-node-6pftxv05i7y1 .fl-node-kva0tf76jn9x.fl-heading-text {
    font-size: 40px !important;
    line-height: 1.2 !important;
}

/* ═══════════════════════════════════════════
   CTA ROW — gradient overlay
   ═══════════════════════════════════════════ */

[data-node="c9k1tvd4yf3m"] .fl-row-content-wrap {
    position: relative;
}

[data-node="c9k1tvd4yf3m"] .fl-row-content-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 184, 140, 0.95) 0%, rgba(52, 60, 82, 0.95) 100%);
    z-index: 0;
}

[data-node="c9k1tvd4yf3m"] .fl-row-content {
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════
   CTA CARDS
   ═══════════════════════════════════════════ */

.fl-module.fl-module-html { width: 100%; }
.fl-module-content .cta-card { width: 100%; box-sizing: border-box; }

.cta-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    height: 100%;
    box-sizing: border-box;
}

.cta-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-card-title {
    color: #fff !important;
    font-weight: 600 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    margin: 0;
}

.cta-card-sub {
    color: rgba(255,255,255,0.7) !important;
    font-size: 14px !important;
    font-family: 'Inter', sans-serif !important;
    margin: 0;
}

.cta-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 18px !important;
    font-weight: 600 !important;
    font-family: 'Inter', sans-serif !important;
    text-decoration: none;
    box-sizing: border-box;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-card-btn--white {
    background: #fff;
    color: rgb(0,184,140) !important;
}

.cta-card-btn--glass {
    background: rgba(255,255,255,0.2);
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.3);
}

.cta-card-btn--white:hover {
    background: #f0f0f0 !important;
    color: rgb(0,184,140) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cta-card-btn--glass:hover {
    background: rgba(255,255,255,0.3) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ═══════════════════════════════════════════
   CTA CONTACT BAR
   ═══════════════════════════════════════════ */

.cta-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8) !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter', sans-serif !important;
    line-height: 1;
}

.cta-contact-divider {
    display: block;
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.4);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   LAYOUT HELPERS
   ═══════════════════════════════════════════ */

.fl-node-chj08ib9m5fe {
    display: flex !important;
}

.fl-node-gq2valme69u5.fl-col-group-nested {
    max-width: 897px;
    margin: 24px auto !important;
}

.fl-col.fl-node-96cf0exsqgbw { padding-right: 12px; }
.fl-col.fl-node-f6mjqlnecys4 { padding-left: 12px; }

.fl-col-small:not(.fl-col-small-full-width).fl-node-96cf0exsqgbw {
    max-width: 100% !important;
}

/* ═══════════════════════════════════════════
   SHARED UTILITIES — harper-container
   ═══════════════════════════════════════════ */

.harper-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* ═══════════════════════════════════════════
   SECTION A — Green About / Intro
   ═══════════════════════════════════════════ */

.harper-about-row .fl-row-content-wrap {
    background: radial-gradient(ellipse at 0% 50%, rgba(255,255,255,0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 100% 100%, rgba(0,150,115,0.4) 0%, transparent 50%),
                linear-gradient(135deg, #00D9A5 0%, #00b88c 100%);
    padding: 80px 0 !important;
}

.harper-about-row .fl-row-content-wrap::before {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/G%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.harper-about-row .fl-row-content,
.harper-about-row .fl-module-content {
    position: relative;
    z-index: 1;
}

.harper-about-row .fl-col-content { padding: 0 24px !important; }
.harper-about-row .fl-col:first-child .fl-col-content { padding: 0 32px 0 0 !important; }
.harper-about-row .fl-col:last-child  .fl-col-content { padding: 0 0 0 32px !important; }

.harper-about-section { width: 100%; }

.harper-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.harper-label {
    color: rgba(255,255,255,0.8) !important;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.harper-about-text {
    color: rgba(255,255,255,0.9) !important;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    margin-bottom: 16px !important;
}

.harper-about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.harper-mini-stat {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 16px;
    padding: 12px 20px;
    text-align: center;
}

.harper-mini-stat span {
    display: block;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1;
}

.harper-mini-stat small {
    display: block;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 14px !important;
    color: rgba(255,255,255,0.8) !important;
    margin-top: 2px;
}

.harper-about-image-wrap {
    position: relative;
    overflow: visible;
}

.harper-about-image-box {
    border-radius: 24px;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.2);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    aspect-ratio: 1 / 1;
}

.harper-about-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.harper-deco {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    z-index: -1;
}

.harper-deco--br {
    bottom: -24px;
    left: -24px;
    width: 96px;
    height: 96px;
    border-radius: 16px;
}

.harper-deco--tl {
    top: -24px;
    right: -24px;
    width: 128px;
    height: 128px;
}

/* ═══════════════════════════════════════════
   SECTION B — Stats Bar (floating dark card)
   ═══════════════════════════════════════════ */

.harper-stats-bar-row {
    overflow: visible !important;
    position: relative;
    z-index: 10;
}

.harper-stats-bar-row .fl-row-content-wrap {
    background-color: #f8f6f3 !important;
    padding: 0 0 64px !important;
    overflow: visible !important;
}

.harper-stats-bar-row .fl-row-content {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 32px !important;
}

.harper-stats-bar-row .fl-col-group {
    margin-top: -48px !important;
    background: rgba(58,67,87,0.97) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px !important;
    border: 1px solid rgba(106,122,153,0.2) !important;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.3) !important;
    overflow: hidden !important;
    position: relative;
}

.harper-stats-bar-row .fl-col-group::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, #1affc3, #00D9A5, #1affc3) !important;
    z-index: 100 !important;
    pointer-events: none !important;
    display: block !important;
    width: 100%;
}

.harper-stats-bar-row .fl-col-content {
    padding: 32px 24px !important;
    margin: 0 !important;
    text-align: center;
    border-right: 1px solid rgba(106,122,153,0.2);
    box-sizing: border-box;
}

.harper-stats-bar-row .fl-col:last-child .fl-col-content {
    border-right: none !important;
}

/* ═══════════════════════════════════════════
   SECTION C — Why Work With Harper (4 cards)
   ═══════════════════════════════════════════ */

.harper-why-row .fl-row-content-wrap {
    padding: 20px 0 20px !important;
}

.harper-why-cards-row .fl-row-content-wrap {
    padding: 0 0 80px !important;
}

.harper-why-row .fl-col-content {
    padding: 0 !important;
    margin: 0 !important;
    text-align: center;
}

.harper-why-section { width: 100%; }

.harper-why-header {
    text-align: center;
    margin-bottom: 48px;
    padding-top: 64px;
}

.harper-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.harper-why-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.harper-why-icon--green { background: #00D9A5; color: #ffffff; }
.harper-why-icon--navy  { background: #3a4357; color: #ffffff; }
.harper-why-icon svg { display: block; }

.harper-why-title {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    color: #343c52 !important;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
}

.harper-why-text {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 14px !important;
    color: #3a4357 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* ═══════════════════════════════════════════
   SECTION D — Testimonials
   ═══════════════════════════════════════════ */

.harper-testimonials-row .fl-row-content-wrap {
    padding: 80px 0;
}

.harper-testimonials-row .fl-col-content {
    padding: 0 !important;
    margin: 0 !important;
}

.harper-testimonials-section { width: 100%; position: relative; }

.harper-testimonials-topline {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,217,165,0.5), transparent);
    margin-bottom: 64px;
}

.harper-testimonials-header {
    text-align: center;
    margin-bottom: 48px;
}

.harper-testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 9999px;
    padding: 8px 16px;
    margin-bottom: 24px;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 13px !important;
    color: rgba(209,212,220,0.9) !important;
}

.harper-avatars { display: flex; margin-right: 4px; }

.harper-av {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #343c52;
    margin-left: -8px;
}

.harper-av:first-child { margin-left: 0; }
.harper-av--1 { background: #1affc3; }
.harper-av--2 { background: #00D9A5; }
.harper-av--3 { background: #00b88c; }

.harper-testimonial-featured {
    max-width: 896px;
    margin: 0 auto 40px;
    background: rgba(58,67,87,0.5);
    border: 1px solid rgba(106,122,153,0.3);
    border-radius: 24px;
    padding: 40px;
    position: relative;
}

.harper-quote-icon {
    position: absolute;
    top: 32px;
    left: 32px;
    color: rgba(0,217,165,0.3);
    display: block;
}

.harper-featured-quote {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: clamp(1.125rem, 2vw, 1.375rem) !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    line-height: 1.6 !important;
    margin: 0 0 32px !important;
    padding-left: 32px;
    quotes: none;
}

.harper-featured-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-left: 32px;
}

.harper-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1affc3, #00b88c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    color: #ffffff !important;
    flex-shrink: 0;
}

.harper-author-name {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    color: #ffffff !important;
    margin: 0 !important;
}

.harper-author-company {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 13px !important;
    color: rgba(168,174,190,0.9) !important;
    margin: 2px 0 0 !important;
}

.harper-stars {
    margin-left: auto;
    display: none;
    color: #00D9A5 !important;
    font-size: 18px;
    letter-spacing: 2px;
}

.harper-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 896px;
    margin: 0 auto;
}

.harper-testimonial-card {
    background: rgba(58,67,87,0.3);
    border: 1px solid rgba(106,122,153,0.2);
    border-radius: 16px;
    padding: 24px;
}

.harper-card-stars {
    color: #00D9A5 !important;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.harper-card-quote {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 14px !important;
    color: rgba(228,230,235,0.9) !important;
    line-height: 1.7 !important;
    margin: 0 0 20px !important;
    quotes: none;
}

.harper-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.harper-card-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3a4357;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    color: #ffffff !important;
    flex-shrink: 0;
}

.harper-card-name {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    color: #ffffff !important;
    margin: 0 !important;
}

.harper-card-company {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 12px !important;
    color: rgba(168,174,190,0.9) !important;
    margin: 2px 0 0 !important;
}

/* Shared 1280px containers */
.harper-about-row .fl-row-content,
.harper-why-row .fl-row-content,
.harper-why-cards-row .fl-row-content,
.harper-testimonials-row .fl-row-content {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding-left: 32px !important;
    padding-right: 32px !important;
}

/* ═══════════════════════════════════════════
   BB NATIVE MODULE TARGETING
   ═══════════════════════════════════════════ */

/* ── About Row ── */

.harper-about-label {
    margin-bottom: 16px !important;
}

.harper-about-label .fl-heading,
.harper-about-label .fl-heading-text {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.8) !important;
    margin: 0 !important;
}

.harper-about-h2 {
    margin-bottom: 24px !important;
}

.harper-about-h2 .fl-heading,
.harper-about-h2 .fl-heading-text {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 30px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
    margin: 0 !important;
}

.harper-about-p .fl-rich-text p {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    color: rgba(255,255,255,0.9) !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
    margin-bottom: 16px !important;
}

.harper-about-p2 .fl-rich-text p {
    font-size: 16px !important;
    color: rgba(255,255,255,0.8) !important;
    margin-bottom: 0 !important;
}

.harper-about-photo .fl-photo {
    display: flex;
    align-items: center;
    height: 100%;
}

.harper-about-photo .fl-photo-align-center::before {
    content: "";
    width: 10rem;
    height: 10rem;
    position: absolute;
    bottom: -2.5rem;
    left: -2.5rem;
    background: hsla(0, 0%, 100%, .1);
    border-radius: 1.5rem;
    z-index: -1;
}

.harper-about-photo .fl-photo-align-center::after {
    content: "";
    width: 12rem;
    height: 12rem;
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    background: hsla(0, 0%, 100%, .1);
    border-radius: 50%;
    z-index: -1;
}

.harper-about-photo .fl-photo-content {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.2);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    aspect-ratio: 1 / 1;
}

.harper-about-photo .fl-photo-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

/* ── Stats Bar Row ── */

.harper-stat-num .fl-heading-text {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 36px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    background: linear-gradient(135deg, #1affc3, #00D9A5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px !important;
}

.harper-stat-lbl .fl-heading-text {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: rgba(209,212,220,0.9) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

/* ── Why Harper Header Row ── */

.harper-why-h2 {
    margin-bottom: 16px !important;
}

.harper-why-h2 .fl-heading,
.harper-why-h2 .fl-heading-text {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: clamp(30px, 3.5vw, 40px) !important;
    font-weight: 700 !important;
    color: #343c52 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
    margin: 0 !important;
}

.harper-why-sub .fl-rich-text p {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 18px !important;
    color: #3a4357 !important;
    line-height: 1.6 !important;
    max-width: 640px;
    margin: 0 auto 50px !important;
}

/* ── Why Harper Cards Row ── */

.harper-why-cards-row .fl-col-group {
    display: flex !important;
    flex-wrap: wrap;
    align-items: stretch;
}

.harper-why-cards-row .fl-col {
    display: flex !important;
    flex-direction: column;
    transition: transform 0.2s ease;
}

.harper-why-cards-row .fl-col-content {
    display: flex !important;
    flex-direction: column;
    flex: 1;
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 24px !important;
    margin: 0 10px !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    box-sizing: border-box;
}

.harper-why-cards-row .fl-col:first-child .fl-col-content { margin-left: 0 !important; }
.harper-why-cards-row .fl-col:last-child  .fl-col-content { margin-right: 0 !important; }

.harper-why-card-title {
    margin-bottom: 8px !important;
}

.harper-why-card-title .fl-heading,
.harper-why-card-title .fl-heading-text {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #343c52 !important;
    line-height: 1.3 !important;
    margin: 0 !important;
}

.harper-why-card-text .fl-rich-text p {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 14px !important;
    color: #3a4357 !important;
    line-height: 1.65 !important;
    margin: 0 !important;
}

.harper-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
}

/* ── Testimonials Row ── */

.harper-testimonials-h2 .fl-heading-text {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: clamp(1.875rem, 3.5vw, 2.5rem) !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
    text-align: center;
    margin-bottom: 8px !important;
}

.harper-testimonials-content {
    text-align: center;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — max-width (descending)
   ═══════════════════════════════════════════ */

/* ── Large tablets / small desktops (≤1199px) ── */
@media (max-width: 1199px) {
    .fl-node-chj08ib9m5fe {
        gap: 26px !important;
    }
}

/* ── Tablets / iPad landscape (≤991px) ── */
@media (max-width: 991px) {
    .main-heading h1 {
        font-size: 52px;
        line-height: 1.15;
    }

    /* Hero spacing: gaps under H1 and under subtext */
    .fl-node-pxl0joyct7wr { margin-bottom: 16px !important; }
    .fl-node-8ks73qmclbi4 { margin-bottom: 24px !important; }

     .harper-why-cards-row .fl-row-content .fl-col-group {
        display: contents !important;
    }

    .harper-about-row .fl-col:first-child .fl-col-content,
    .harper-about-row .fl-col:last-child  .fl-col-content {
        padding: 0 24px !important;
    }

    .harper-about-row .fl-row-content-wrap {
        padding: 72px 0 !important;
    }

    .harper-stats-bar-row .fl-col-content {
        padding: 24px 16px !important;
    }

    .harper-why-header {
        padding-top: 48px;
        margin-bottom: 40px;
    }

    .harper-why-row .fl-row-content-wrap {
        padding: 12px 0 16px !important;
    }

       .harper-why-cards-row .fl-row-content .fl-col-group {
        display: contents !important;
    }

    .harper-why-cards-row .fl-col-group {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }

    .harper-why-cards-row .fl-col {
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
    }

    .harper-why-cards-row .fl-col-content {
        margin: 0 !important;
    }

   
     .harper-why-cards-row .fl-row-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }

    .fl-node-0sbuphawqgck .fl-heading-text,
    .fl-node-0sbuphawqgck h2.fl-heading-text,
    .fl-node-56qnv8kpdm7y h2.fl-heading-text.fl-node-0sbuphawqgck,
    .fl-node-6pftxv05i7y1 h2.fl-heading-text.fl-node-0sbuphawqgck,
    .fl-node-6pftxv05i7y1 .fl-node-kva0tf76jn9x.fl-heading-text {
        font-size: 30px !important;
    }

    .fl-node-56qnv8kpdm7y .fl-col-content,
    .fl-node-6pftxv05i7y1 .fl-col-content {
        justify-content: center !important;
        display: flex !important;
        flex-direction: column !important;
    }
}

/* ── Tablet+ split column override (769-991px) ── */
@media (min-width: 769px) and (max-width: 991px) {
    .fl-node-6pftxv05i7y1 .fl-col-content {
        justify-content: space-evenly !important;
    }
}

/* ── Mobile / iPad portrait (≤767px) ── */
@media (max-width: 767px) {
    /* Hero */
    .main-heading h1 {
        font-size: 40px;
        line-height: 1.15;
    }

    .harper-hero-orbs .fl-col-content {
        padding-top: 40px;
    }

    .nh-hero-content p {
        font-size: 16px;
        line-height: 26px;
    }

     .harper-why-cards-row .fl-row-content {
        grid-template-columns: 1fr !important;
    }

    .fl-builder-content-2005 .fl-node-c6s0ebp5yt9v {
        flex-direction: column;
        justify-content: center;
        align-content: center;
        flex-wrap: wrap;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 30px;
        gap: 30px;
    }

    .fl-builder-content-2005 .fl-node-e8al3f2is1go,
    .fl-builder-content-2005 .fl-node-cfi5urymet2g {
        align-items: center !important;
    }

    .fl-builder-content .fl-node-896nxs3bghwq .fl-rich-text,
    .fl-builder-content .fl-node-896nxs3bghwq .fl-rich-text *:not(b, strong) {
        margin-top: 20px;
    }

    /* About */
    .harper-about-row .fl-row-content-wrap {
        padding: 56px 0 !important;
    }

     .harper-why-cards-row .fl-col-content {
        margin: 0 !important;
    }

    .harper-about-row .fl-row-content,
    .harper-why-row .fl-row-content,
    .harper-why-cards-row .fl-row-content,
    .harper-testimonials-row .fl-row-content {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .harper-about-row .fl-col:first-child .fl-col-content,
    .harper-about-row .fl-col:last-child  .fl-col-content {
        padding: 0 !important;
    }

    .harper-about-h2 .fl-heading,
    .harper-about-h2 .fl-heading-text {
        font-size: 26px !important;
    }

    .harper-about-p .fl-rich-text p {
        font-size: 16px !important;
    }

    .harper-about-photo .fl-photo-content {
        margin-top: 40px;
        margin-bottom: 30px;
    }

    /* Stats */
    .harper-stats-bar-row .fl-row-content {
        padding: 0 16px !important;
    }

    .harper-stats-bar-row .fl-row-content-wrap {
        padding: 0 0 40px !important;
    }

    .harper-stats-bar-row .fl-col-group {
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: -28px !important;
        flex-direction: column !important;
    }

    .harper-stats-bar-row .fl-col-content {
        padding: 20px 24px !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(106,122,153,0.2);
    }

    .harper-stats-bar-row .fl-col:last-child .fl-col-content {
        border-bottom: none !important;
    }

    /* Why Work With Harper */
    .harper-why-row .fl-row-content-wrap {
        padding: 8px 0 8px !important;
    }

    .harper-why-cards-row .fl-row-content-wrap {
        padding: 0 0 48px !important;
    }

    .harper-why-header {
        padding-top: 36px;
        margin-bottom: 28px;
    }

    .harper-why-h2 .fl-heading,
    .harper-why-h2 .fl-heading-text {
        font-size: 28px !important;
    }

    .harper-why-sub .fl-rich-text p {
        font-size: 16px !important;
        margin: 0 auto 28px !important;
    }

    .harper-why-cards-row .fl-col-content {
        margin: 0 0 12px !important;
    }

     .harper-why-cards-row .fl-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* Split section — stack columns on mobile */
    .fl-node-o9hwpnqvsdru .fl-col-group {
        flex-direction: column !important;
    }

    .fl-node-o9hwpnqvsdru .fl-col {
        flex: none !important;
        width: 100% !important;
    }

    .fl-node-6pftxv05i7y1 {
        box-shadow: none !important;
    }

    .fl-node-56qnv8kpdm7y .fl-col-content,
    .fl-node-6pftxv05i7y1 .fl-col-content {
        height: auto !important;
    }

    .fl-node-56qnv8kpdm7y,
    .fl-node-6pftxv05i7y1 {
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
    }

    .fl-node-chj08ib9m5fe {
        flex-direction: column !important;
    }

    .fl-node-chj08ib9m5fe .fl-col {
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
    }

    .fl-node-0sbuphawqgck .fl-heading-text {
        font-size: 30px !important;
    }

    .fl-node-ik45xyf79rab {
        grid-template-columns: 1fr !important;
        gap: 26px;
    }

    .fl-node-wurb8h2qpo3z .fl-col-content {
        width: 100% !important;
    }

    .fl-node-jd742vf6z9iy.fl-module-heading {
        font-size: 30px;
        margin-bottom: 20px !important;
    }

    /* Testimonial columns — reset col padding, add on content */
    .fl-col.fl-node-96cf0exsqgbw,
    .fl-col.fl-node-f6mjqlnecys4 {
        padding: 0 !important;
        margin-bottom: 30px !important;
    }

    .fl-col.fl-node-96cf0exsqgbw .fl-col-content,
    .fl-col.fl-node-f6mjqlnecys4 .fl-col-content {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .fl-col-small:not(.fl-col-small-full-width) {
        max-width: none !important;
    }

    .featured-wrap {
        padding: 16px;
    }

    /* CTA contact — stack vertically */
    .cta-contact {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .cta-contact-item {
        justify-content: center;
    }

    .cta-contact-divider {
        width: 40px;
        height: 1px;
    }
}

/* ── Small mobile (≤480px) ── */
@media (max-width: 480px) {
    .main-heading h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .harper-about-row .fl-row-content-wrap {
        padding: 48px 0 !important;
    }

    .harper-stats-bar-row .fl-col-content {
        padding: 16px 20px !important;
    }

    .harper-stat-num .fl-heading-text {
        font-size: 32px !important;
    }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — min-width (ascending)
   ═══════════════════════════════════════════ */

@media (min-width: 640px) {
    .harper-container { padding-left: 32px; padding-right: 32px; }
    .harper-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .harper-stat-num .fl-heading-text { font-size: 48px !important; }
    .harper-testimonial-featured { padding: 56px; }
    .harper-stars { display: block; }
    .harper-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 769px) {
    /* Split columns — tablet+ */
    .fl-node-56qnv8kpdm7y .fl-col-content,
    .fl-node-6pftxv05i7y1 .fl-col-content {
        padding: 96px 108px !important;
    }

    /* Icon list margins — tablet+ */
    .fl-node-56qnv8kpdm7y .pp-icon-list-items,
    .fl-node-6pftxv05i7y1 .pp-icon-list-items {
        margin-top: unset !important;
        margin-bottom: 32px !important;
    }

    /* Mini stat width — tablet+ */
    .harper-mini-stat {
        width: 100%;
    }

    /* Right column justify — tablet+ */
    .fl-node-6pftxv05i7y1 .fl-col-content {
        justify-content: space-evenly !important;
    }
}

@media (min-width: 1024px) {
    .harper-container { padding-left: 48px; padding-right: 48px; }

    .harper-about-row .fl-row-content-wrap { padding: 112px 0 !important; }

    .harper-about-h2 .fl-heading,
    .harper-about-h2 .fl-heading-text { font-size: 36px !important; }

    .harper-about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }

    .harper-why-cards-row .fl-row-content-wrap { padding: 0 0 96px !important; }
    .harper-why-header { padding-top: 80px; margin-bottom: 64px; }
    .harper-why-grid { grid-template-columns: repeat(4, 1fr); }

    .harper-testimonials-row .fl-row-content-wrap { padding: 96px 0; }

    .fl-node-wurb8h2qpo3z .fl-col-content { width: 86% !important; }
}

[data-node="c9k1tvd4yf3m"] {
    border-bottom: 4px solid #1affc3;
}

/* ════════════════════════════════════════════════
   ABOUT US 2026 — HERO
   ════════════════════════════════════════════════ */

/* Mesh gradient overlay on hero row */
.au2026-hero.fl-row > .fl-row-content-wrap {
    position: relative;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(0,217,165,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(0,217,165,0.06) 0%, transparent 50%);
}

/* Floating mint orbs */
.au2026-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    animation: au2026-float 6s ease-in-out infinite;
}
.au2026-hero-orb--1 {
    width: 288px;
    height: 288px;
    background: rgba(0, 217, 165, 0.15);
    top: 80px;
    right: 10%;
    animation-delay: 0s;
}
.au2026-hero-orb--2 {
    width: 208px;
    height: 208px;
    background: rgba(0, 217, 165, 0.10);
    bottom: 40px;
    left: 5%;
    animation-delay: 2s;
}
@keyframes au2026-float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-20px); }
}

/* Column layout */
.au2026-hero.fl-row .fl-col-group {
    display: flex !important;
    align-items: flex-end;
    gap: 64px;
}
.au2026-hero.fl-row .fl-col-group::before,
.au2026-hero.fl-row .fl-col-group::after {
    display: none !important;
    content: none !important;
}
.au2026-hero.fl-row .fl-col-group > .fl-col {
    float: none !important;
    flex: 0 0 calc(50% - 32px);
    max-width: calc(50% - 32px);
}
.au2026-hero-left {
    position: relative;
    z-index: 1;
}
.au2026-hero-right {
    position: relative;
    z-index: 1;
}

/* Content wrapper */
.au2026-hero-content {
    padding-bottom: 112px;
}

/* Badge */
.au2026-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: rgba(0, 217, 165, 0.10);
    border: 1px solid rgba(0, 217, 165, 0.30);
    margin-bottom: 24px;
    color: #1affc3;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(4px);
}
.au2026-hero-badge svg {
    flex-shrink: 0;
}

/* H1 */
.au2026-hero-heading,
.au2026-hero .au2026-hero-heading {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: clamp(44px, 6vw, 72px) !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    color: #ffffff !important;
    margin: 0 0 24px !important;
}
.au2026-hero-heading-accent {
    background: linear-gradient(to right, #1affc3, #7fffdf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent !important;
    background-clip: text;
}

/* Body copy */
.au2026-hero-lead,
.au2026-hero .au2026-hero-lead {
    font-family: "Inter", sans-serif;
    font-size: 20px !important;
    line-height: 28px !important;
    color: rgba(255,255,255,0.75) !important;
    margin: 0 0 20px !important;
}
.au2026-hero-body,
.au2026-hero .au2026-hero-body {
    font-family: "Inter", sans-serif;
    font-size: 16px !important;
    line-height: 26px !important;
    color: rgba(255,255,255,0.55) !important;
    margin: 0 !important;
}

/* Right photo */
.au2026-hero-photo-wrap {
    position: relative;
    height: 520px;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
}
.au2026-hero-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.au2026-hero-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(52,60,82,0.6) 0%, transparent 50%);
}

/* Below 1024px: single column, no photo */
@media (max-width: 1023px) {
    .au2026-hero-col-right {
        display: none !important;
    }
    .au2026-hero.fl-row .fl-col-group {
        gap: 0;
    }
    .au2026-hero.fl-row .fl-col-group > .fl-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    .au2026-hero-content {
        padding-bottom: 80px;
    }
}

/* Smaller top padding on mobile (< 768px) */
@media (max-width: 767px) {
    .au2026-hero.fl-row > .fl-row-content-wrap {
        padding-top: 128px !important;
    }
    .au2026-hero-heading {
        font-size: clamp(36px, 10vw, 52px) !important;
    }
}

/* ════════════════════════════════════════════════
   HRP HERO — Universal page hero (BB-native)
   Reusable across About Us, Employers, Candidates…
   Row class: hrp-hero  (+ bg colour set in BB row)
   ════════════════════════════════════════════════ */

.hrp-hero.fl-row > .fl-row-content-wrap {
    position: relative;
    padding: 128px 0 80px !important;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(0,217,165,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(0,217,165,0.06) 0%, transparent 50%);
}
@media (min-width: 1024px) {
    .hrp-hero.fl-row > .fl-row-content-wrap { padding: 160px 0 112px !important; }
}

/* Single-column — layout handled by hrp-hero-wrap grid inside the module */
.hrp-hero.fl-row .fl-col-group > .fl-col {
    float: none !important;
    flex: 0 0 100%;
    max-width: 100%;
}

/* Floating mint orbs — decorative divs inside HTML module */
.hrp-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    animation: au2026-float 6s ease-in-out infinite;
}
.hrp-hero-orb--1 {
    width: 288px; height: 288px;
    background: rgba(0, 217, 165, 0.15);
    top: 80px; right: 10%;
    animation-delay: 0s;
}
.hrp-hero-orb--2 {
    width: 208px; height: 208px;
    background: rgba(0, 217, 165, 0.10);
    bottom: 40px; left: 5%;
    animation-delay: -3s;
}

/* Badge — icon injected via CSS ::before, only text in HTML */
.hrp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: rgba(0, 217, 165, 0.10);
    border: 1px solid rgba(0, 217, 165, 0.30);
    margin-bottom: 24px;
    color: #1affc3;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(4px);
}
.hrp-hero-badge::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231affc3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9.937 15.5A2 2 0 0 0 8.5 14.063l-6.135-1.582a.5.5 0 0 1 0-.962L8.5 9.936A2 2 0 0 0 9.937 8.5l1.582-6.135a.5.5 0 0 1 .963 0L14.063 8.5A2 2 0 0 0 15.5 9.937l6.135 1.581a.5.5 0 0 1 0 .964L15.5 14.063a2 2 0 0 0-1.437 1.437l-1.582 6.135a.5.5 0 0 1-.963 0z'/%3E%3C%2Fsvg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* H1 — BB Heading module puts our class on .fl-module wrapper, not on <h1> */
.hrp-hero-heading .fl-heading,
.hrp-hero .hrp-hero-heading .fl-heading {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: clamp(44px, 6vw, 72px) !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    color: #ffffff !important;
    margin: 0 0 24px !important;
}
.hrp-hero-heading-accent {
    background: linear-gradient(to right, #1affc3, #7fffdf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent !important;
    background-clip: text;
}

/* Body copy */
.hrp-hero-lead,
.hrp-hero .hrp-hero-lead {
    font-family: "Inter", sans-serif;
    font-size: 20px !important;
    line-height: 28px !important;
    color: rgba(255,255,255,0.75) !important;
    margin: 0 0 20px !important;
}
.hrp-hero-body,
.hrp-hero .hrp-hero-body {
    font-family: "Inter", sans-serif;
    font-size: 16px !important;
    line-height: 26px !important;
    color: rgba(255,255,255,0.55) !important;
    margin: 0 !important;
}

/* Right photo — class goes on BB Photo module wrapper */
.hrp-hero-photo-wrap {
    position: relative;
    height: 520px;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
}
.hrp-hero-photo-wrap .fl-module-content,
.hrp-hero-photo-wrap .fl-photo,
.hrp-hero-photo-wrap .fl-photo-content {
    width: 100% !important;
    height: 100% !important;
    position: relative;
}
.hrp-hero-photo-wrap .fl-photo-img {
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.hrp-hero-photo-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(52,60,82,0.6) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Mobile: hide photo column, stack to full width */
@media (max-width: 1023px) {
    .hrp-hero-col-right {
        display: none !important;
    }
    .hrp-hero.fl-row .fl-col-group {
        gap: 0;
    }
    .hrp-hero.fl-row .fl-col-group > .fl-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}
@media (max-width: 767px) {
    .hrp-hero.fl-row > .fl-row-content-wrap {
        padding-top: 128px !important;
    }
    .hrp-hero-heading {
        font-size: clamp(36px, 10vw, 52px) !important;
    }
}

/* ════════════════════════════════════════════════
   ABOUT US 2026 — STORY SECTION
   ════════════════════════════════════════════════ */

/* Background */
.au2026-story.fl-row > .fl-row-content-wrap {
    position: relative;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(255,255,255,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 100% 100%, rgba(0,150,115,0.4) 0%, transparent 50%),
        linear-gradient(135deg, #00D9A5 0%, #00b88c 100%) !important;
    padding: 112px 0 !important;
}

/* Dot pattern overlay */
.au2026-story.fl-row > .fl-row-content-wrap::before {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* Container width */
.au2026-story.fl-row .fl-row-content {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding-left: 32px !important;
    padding-right: 32px !important;
    position: relative;
    z-index: 1;
}

/* Flexbox 2-col layout */
.au2026-story.fl-row .fl-col-group {
    display: flex !important;
    align-items: center;
    gap: 64px;
}
.au2026-story.fl-row .fl-col-group::before,
.au2026-story.fl-row .fl-col-group::after {
    display: none !important;
    content: none !important;
}
.au2026-story.fl-row .fl-col-group > .fl-col {
    float: none !important;
    flex: 0 0 calc(50% - 32px);
    max-width: calc(50% - 32px);
}

/* ── Left column text ── */
.au2026-story-label {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin: 0 0 16px;
}

.au2026-story-h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0 0 24px;
}

.au2026-story-lead {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin: 0 0 20px;
}

.au2026-story-body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin: 0 0 20px;
}
.au2026-story-body:last-of-type {
    margin-bottom: 0;
}

/* ── Right column photo ── */
.au2026-story-photo-wrap {
    position: relative;
}

.au2026-story-photo-box {
    border-radius: 24px;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.2);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    aspect-ratio: 1 / 1;
}

.au2026-story-photo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.au2026-story-deco {
    position: absolute;
    background: rgba(255,255,255,0.1);
    z-index: -1;
}
.au2026-story-deco--bl {
    width: 96px;
    height: 96px;
    border-radius: 16px;
    bottom: -24px;
    left: -24px;
}
.au2026-story-deco--tr {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    top: -24px;
    right: -24px;
}

/* Override the global min-width:769px rule that forces width:100% on mini-stats */
.au2026-story .harper-mini-stat {
    width: auto !important;
    text-align: left !important;
}

/* ── Responsive ── */
@media (max-width: 1023px) {
    .au2026-story.fl-row > .fl-row-content-wrap { padding: 80px 0 !important; }
    .au2026-story.fl-row .fl-col-group {
        gap: 0;
    }
    .au2026-story.fl-row .fl-col-group > .fl-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* Tablet only: hide the photo column */
@media (min-width: 768px) and (max-width: 1023px) {
    .au2026-story-col-right {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .au2026-story.fl-row > .fl-row-content-wrap {
        padding: 80px 0 !important;
    }
    .au2026-story.fl-row .fl-row-content {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .au2026-story-h2 {
        font-size: 28px;
    }
    /* Stack columns vertically on mobile */
    .au2026-story.fl-row .fl-col-group {
        flex-wrap: wrap !important;
    }
    /* Show photo below text on mobile */
    .au2026-story-col-right {
        display: block !important;
        margin-top: 32px;
    }
}

/* ════════════════════════════════════════════════
   ABOUT US 2026 — VALUES SECTION
   (reuses harper-stats-bar-row for card/overlap mechanics)
   ════════════════════════════════════════════════ */

/* Each value item: icon left, text right */
.au2026-values-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

/* Icon box */
.au2026-values-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(0, 217, 165, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.au2026-values-icon svg {
    width: 20px;
    height: 20px;
    color: #1affc3;
    stroke: #1affc3;
    display: block;
}

/* Value title */
.au2026-values-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 6px;
    line-height: 1.3;
}

/* Value description */
.au2026-values-desc {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(163, 177, 208, 0.85);
    margin: 0;
}

/* Override harper-stats-bar-row column padding + centering */
.au2026-values-row .fl-col-content {
    padding: 32px !important;
    text-align: left !important;
    align-items: flex-start !important;
}
/* rounded-2xl + 1px gradient line (NJ uses h-1, base uses 4px) */
.au2026-values-row .fl-col-group {
    border-radius: 24px !important;
}
.au2026-values-row .fl-col-group::before {
    height: 1px !important;
}

/* Column dividers — vertical on desktop, horizontal on mobile */
.au2026-values-row .fl-col-group > .fl-col + .fl-col {
    border-left: 1px solid rgba(106, 122, 153, 0.2);
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .au2026-values-row .fl-col-group {
        margin-top: -32px !important;
    }
    .au2026-values-row .fl-col-group > .fl-col + .fl-col {
        border-left: none;
        border-top: 1px solid rgba(106, 122, 153, 0.2);
    }
}

/* ════════════════════════════════════════════════
   ABOUT US 2026 — TIMELINE SECTION
   ════════════════════════════════════════════════ */

.au2026-timeline.fl-row > .fl-row-content-wrap {
    background: #f5f3f0 !important;
    padding: 80px 0 !important;
}
.au2026-timeline.fl-row .fl-row-content {
    max-width: 1280px !important;
    padding-left: 32px !important;
    padding-right: 32px !important;
}

/* Header */
.au2026-timeline-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 64px;
}
.au2026-timeline-label {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1affc3;
    margin: 0 0 12px;
}
.au2026-timeline-h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 700;
    color: #343c52;
    line-height: 1.2;
    margin: 0;
}

/* Nav arrows */
.au2026-timeline-nav {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-shrink: 0;
    margin-left: 24px;
}
.au2026-timeline-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #00D9A5;
    color: #00D9A5;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}
.au2026-timeline-btn:hover:not(:disabled) {
    background: #00D9A5;
    color: #ffffff;
}
.au2026-timeline-btn:disabled {
    border-color: rgba(69, 78, 102, 0.3);
    color: rgba(69, 78, 102, 0.3);
    cursor: not-allowed;
}

/* Slider */
.ht-swiper {
    position: relative;
    overflow: hidden;
}
.ht-wrapper {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.ht-slide {
    width: 298px;
    flex-shrink: 0;
    position: relative;
    padding-top: 120px;
    cursor: pointer;
}
.ht-slide::before {
    content: '';
    position: absolute;
    top: 148px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(69, 78, 102, 0.25);
    transition: background 0.4s ease;
    z-index: 3;
}
.ht-slide.active::before {
    background: #00D9A5;
}
.ht-slide::after {
    content: '';
    position: absolute;
    top: 152px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(69, 78, 102, 0.15);
    z-index: 1;
}
.ht-slide:last-child::after {
    display: none;
}
.ht-year {
    position: absolute;
    top: 0;
    font-size: 96px;
    font-weight: 700;
    line-height: 1;
    color: rgba(69, 78, 102, 0.18);
    transition: color 0.4s ease, transform 0.4s ease;
    font-family: "Plus Jakarta Sans", sans-serif;
    user-select: none;
}
.ht-slide.active .ht-year {
    color: #00D9A5;
    transform: translateY(-4px);
}
.ht-text {
    margin-top: 80px;
    width: 600px;
    max-width: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease 0.25s, transform 0.5s ease 0.25s;
}
.ht-slide.active .ht-text {
    opacity: 1;
    transform: translateY(0);
}
.ht-text-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #343c52;
    margin: 0 0 10px;
}
.ht-text-desc {
    font-size: 16px;
    line-height: 1.65;
    color: #454e66;
    margin: 0;
}

@media (max-width: 767px) {
    .au2026-timeline.fl-row > .fl-row-content-wrap {
        padding: 64px 0 !important;
    }
    .au2026-timeline.fl-row .fl-row-content {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .au2026-timeline-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 48px;
    }
    .au2026-timeline-nav {
        margin-left: 0;
        margin-top: 0;
        flex-shrink: 0;
    }
    .ht-slide { width: 220px; }
    .ht-year  { font-size: 60px; }
}

/* ============================================================
   HRP-DATES — universal timeline slider block
   ============================================================ */
.hrp-dates.fl-row > .fl-row-content-wrap { background: #f5f3f0 !important; padding: 80px 0 !important; }
.hrp-dates.fl-row .fl-row-content { max-width: 1280px !important; padding-left: 32px !important; padding-right: 32px !important; }
/* Reset: prevent .hrp-dates-header CSS from leaking into the BB .fl-module wrapper */
.fl-module.hrp-dates-header { display: block !important; margin-bottom: 0 !important; }
/* Fix: ht-slide:last-child::after rule hides the line on ALL slides (each is only-child in .fl-module-content) */
.hrp-dates .ht-slide::after { display: block !important; }
.hrp-dates-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 64px; }
.hrp-dates-label { font-family: "Plus Jakarta Sans", sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #1affc3; margin: 0 0 12px; }
.hrp-dates-h2 { font-family: "Plus Jakarta Sans", sans-serif; font-size: clamp(28px, 3.5vw, 36px); font-weight: 700; color: #343c52; line-height: 1.2; margin: 0; text-align: left; }
.hrp-dates-nav { display: flex; gap: 12px; margin-top: 8px; flex-shrink: 0; margin-left: 24px; }
.hrp-dates-btn { width: 44px; height: 44px; border-radius: 50%; border: 2px solid #00D9A5; color: #00D9A5; background: transparent; cursor: pointer; font-size: 18px; display: inline-flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; }
.hrp-dates-btn:hover:not(:disabled) { background: #00D9A5; color: #fff; }
.hrp-dates-btn:disabled { border-color: rgba(69,78,102,0.3); color: rgba(69,78,102,0.3); cursor: not-allowed; }
.hrp-dates .ht-wrapper > .fl-module { width: 298px; flex-shrink: 0; }
@media (max-width: 767px) {
    .hrp-dates.fl-row > .fl-row-content-wrap { padding: 64px 0 !important; }
    .hrp-dates.fl-row .fl-row-content { padding-left: 20px !important; padding-right: 20px !important; }
    .hrp-dates-header { flex-direction: row; justify-content: space-between; align-items: center; margin-bottom: 48px; }
    .hrp-dates-nav { margin-left: 0; margin-top: 0; }
    .hrp-dates .ht-wrapper > .fl-module { width: 220px; }
    .ht-text { width: calc(100vw - 60px); }
}

/* ════════════════════════════════════════════════
   ABOUT US 2026 — TEAM SECTION
   ════════════════════════════════════════════════ */

.au2026-team.fl-row > .fl-row-content-wrap {
    background: #343c52 !important;
    padding: 80px 0 !important;
    overflow: hidden;
    position: relative;
}
/* Top gradient rule */
.au2026-team.fl-row > .fl-row-content-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,217,165,0.5), transparent);
    z-index: 2;
}
/* Decorative orb bottom-right */
.au2026-team.fl-row > .fl-row-content-wrap::after {
    content: '';
    position: absolute;
    bottom: 80px; right: 5%;
    width: 256px; height: 256px;
    border-radius: 50%;
    background: rgba(0,217,165,0.1);
    filter: blur(64px);
    pointer-events: none;
    z-index: 0;
}
.au2026-team.fl-row .fl-row-content {
    max-width: 1280px !important;
    padding-left: 32px !important;
    padding-right: 32px !important;
    position: relative;
    z-index: 1;
}

/* Section header */
.au2026-team-header {
    text-align: center;
    margin-bottom: 56px;
}
.au2026-team-label {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1affc3;
    margin: 0 0 12px;
}
.au2026-team-h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}
.au2026-team-intro {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(200, 210, 225, 0.85);
    max-width: 640px;
    margin: 0 auto;
}

/* Grid */
.au2026-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Card */
.au2026-team-card {
    background: rgba(58, 67, 87, 0.5);
    border: 1px solid rgba(69, 78, 102, 0.3);
    border-radius: 24px;
    padding: 24px;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.au2026-team-card:hover {
    border-color: rgba(0, 217, 165, 0.4);
    background: rgba(58, 67, 87, 0.7);
}
.au2026-team-card--featured {
    border-color: rgba(0, 217, 165, 0.3);
}

/* Photo */
.au2026-team-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
}
.au2026-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.au2026-team-photo--featured {
    box-shadow: 0 0 0 2px #00D9A5, 0 0 0 4px #343c52;
}

/* Text */
.au2026-team-name {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin: 0 0 4px;
}
.au2026-team-role {
    font-size: 12px;
    color: #1affc3;
    text-align: center;
    margin: 0 0 12px;
}
.au2026-team-bio {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(163, 177, 208, 0.8);
    text-align: center;
    margin: 0;
}

@media (max-width: 1199px) {
    .au2026-team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1023px) {
    .au2026-team-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 767px) {
    .au2026-team.fl-row > .fl-row-content-wrap { padding: 64px 0 !important; }
    .au2026-team.fl-row .fl-row-content { padding-left: 20px !important; padding-right: 20px !important; }
    .au2026-team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 639px) {
    .au2026-team-grid { grid-template-columns: 1fr !important; }
}
@media (min-width: 1024px) {
    .au2026-team.fl-row > .fl-row-content-wrap { padding: 112px 0 !important; }
}

/* ════════════════════════════════════════════════
   ABOUT US 2026 — TESTIMONIALS SECTION
   ════════════════════════════════════════════════ */

.au2026-testimonials.fl-row > .fl-row-content-wrap {
    background: #f8f6f3 !important;
    padding: 80px 0 !important;
}
.au2026-testimonials.fl-row .fl-row-content {
    max-width: 1280px !important;
    padding-left: 32px !important;
    padding-right: 32px !important;
}

/* Header */
.au2026-testi-header {
    text-align: center;
    margin-bottom: 48px;
}
.au2026-testi-label {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #00b88c;
    margin: 0 0 12px;
}
.au2026-testi-h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    color: #343c52;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

/* Grid */
.au2026-testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 896px;
    margin: 0 auto 40px;
}

/* Card */
.au2026-testi-card {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    position: relative;
}
.au2026-testi-quote-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
    opacity: 0.2;
    color: #00D9A5;
    fill: #00D9A5;
    pointer-events: none;
}

/* Stars */
.au2026-testi-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}
.au2026-testi-stars svg {
    width: 16px;
    height: 16px;
    fill: #00D9A5;
}

/* Quote */
.au2026-testi-blockquote {
    font-size: 15px;
    line-height: 1.75;
    color: #343c52;
    font-style: italic;
    margin: 0 0 24px;
}

/* Author row */
.au2026-testi-author-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}
.au2026-testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #00D9A5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
}
.au2026-testi-name {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #343c52;
    margin: 0 0 2px;
}
.au2026-testi-company {
    font-size: 12px;
    color: #5a6480;
    margin: 0;
}

/* CTA */
.au2026-testi-cta {
    text-align: center;
}
.au2026-testi-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #00D9A5;
    color: #ffffff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease;
}
.au2026-testi-btn:hover {
    background: #00c494;
    color: #ffffff;
    text-decoration: none;
}
.au2026-testi-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .au2026-testimonials.fl-row > .fl-row-content-wrap { padding: 112px 0 !important; }
}
@media (max-width: 767px) {
    .au2026-testimonials.fl-row > .fl-row-content-wrap { padding: 64px 0 !important; }
    .au2026-testimonials.fl-row .fl-row-content { padding-left: 20px !important; padding-right: 20px !important; }
    .au2026-testi-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════
   ABOUT US 2026 — CTA SECTION
   ════════════════════════════════════════════════ */

/* Photo background handled by BB row settings; overlay via ::before */
/* Row strips all spacing — module wrapper fills full width */
.au2026-cta.fl-row > .fl-row-content-wrap {
    padding: 0 !important;
    overflow: hidden;
}
.au2026-cta.fl-row > .fl-row-content-wrap::before { display: none !important; }
.au2026-cta.fl-row .fl-row-content { max-width: 100% !important; padding: 0 !important; }
.au2026-cta.fl-row .fl-col-content { padding: 0 !important; }

/* HRP-DUAL-CTA MODULE — background + overlay */
.hrp-dual-cta-wrap {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    padding: 80px 32px;
}
.hrp-dual-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        rgba(0,184,140,0.95) 0%,
        rgba(0,184,140,0.90) 50%,
        rgba(52,60,82,0.95) 100%);
    z-index: 0;
}

/* Inner wrapper — centres everything */
.au2026-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 896px;
    margin: 0 auto;
    text-align: center;
}
.au2026-cta-h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 24px;
}
.au2026-cta-sub {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    max-width: 640px;
    margin: 0 auto 40px;
}

/* Cards grid — reuses existing .cta-card / .cta-card-btn classes */
.au2026-cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 768px;
    margin: 0 auto 40px;
    text-align: left;
}

@media (min-width: 1024px) {
    .hrp-dual-cta-wrap { padding: 112px 32px; }
}
@media (max-width: 767px) {
    .hrp-dual-cta-wrap { padding: 64px 20px; }
    .au2026-cta-grid { grid-template-columns: 1fr; }
    .au2026-cta-sub { font-size: 17px; }
}

/* ════════════════════════════════════════════════
   EMPLOYERS 2026 — SHARED BUTTONS
   ════════════════════════════════════════════════ */

.emp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}
.emp-btn--primary {
    background: #00D9A5;
    color: #ffffff;
}
.emp-btn--primary:hover { background: #00c494; color: #ffffff; text-decoration: none; transform: translateY(-1px); }

.emp-btn--outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.8);
}
.emp-btn--outline:hover { background: rgba(255,255,255,0.1); color: #ffffff; text-decoration: none; }

.emp-btn--mint {
    background: #00D9A5;
    color: #343c52;
}
.emp-btn--mint:hover { background: #00c494; color: #343c52; text-decoration: none; }

.emp-btn--white {
    background: #ffffff;
    color: #00b88c;
    box-shadow: 0 10px 30px -8px rgba(0,0,0,0.25);
}
.emp-btn--white:hover { background: rgba(255,255,255,0.92); color: #00b88c; text-decoration: none; }

/* ════════════════════════════════════════════════
   EMPLOYERS 2026 — HERO
   ════════════════════════════════════════════════ */

.emp-hero.fl-row > .fl-row-content-wrap {
    background: linear-gradient(135deg, #525b75 0%, #454e66 50%, #3a4357 100%);
    padding: 128px 0 80px !important;
    position: relative;
    overflow: hidden;
}
.emp-hero.fl-row > .fl-row-content-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle 200px at 80% 224px, rgba(0,217,165,0.20) 0%, transparent 70%),
        radial-gradient(circle 150px at 12% calc(100% - 144px), rgba(0,217,165,0.10) 0%, transparent 70%),
        radial-gradient(at 40% 20%, rgba(0,217,165,0.12) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(167,139,250,0.08) 0px, transparent 50%),
        radial-gradient(at 90% 90%, rgba(0,217,165,0.06) 0px, transparent 40%);
    pointer-events: none;
    z-index: 1;
}
@keyframes floatOrb {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}
@media (min-width: 1024px) {
    .emp-hero.fl-row > .fl-row-content-wrap { padding: 160px 0 112px !important; }
}

.emp-hero-inner {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.emp-hero-orb {
    display: none;
}

.emp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: rgba(0,217,165,0.1);
    border: 1px solid rgba(0,217,165,0.3);
    color: #1affc3;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}
.emp-hero-badge svg { width: 16px; height: 16px; flex-shrink: 0; }
.emp-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.emp-hero-h1 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin: 0 0 24px;
}
.emp-hero-h1-accent {
    background: linear-gradient(90deg, #1affc3, #00D9A5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.emp-hero-sub {
    font-family: Inter, sans-serif;
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin: 0 0 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 1024px) {
    .emp-hero-sub { font-size: 20px; }
}

.emp-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.emp-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.emp-hero-stat {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 10px 16px;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.emp-hero-stat-value {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
}
.emp-hero-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* ════════════════════════════════════════════════
   EMPLOYERS 2026 — PROCESS
   ════════════════════════════════════════════════ */

.emp-process.fl-row > .fl-row-content-wrap { padding: 80px 0 !important; }
@media (min-width: 1024px) {
    .emp-process.fl-row > .fl-row-content-wrap { padding: 112px 0 !important; }
}

.emp-process-steps { max-width: 896px; margin-left: auto; margin-right: auto; }

.emp-process-header { text-align: center; margin-bottom: 56px; }
.emp-process-label {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #00b88c;
    margin: 0 0 12px;
}
.emp-process-h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #343c52;
    margin: 0 0 16px;
}
.emp-process-intro {
    font-family: Inter, sans-serif;
    font-size: 18px;
    color: #454e66;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

.emp-process-step {
    display: flex;
    gap: 24px;
    padding-bottom: 40px;
}
@media (min-width: 1024px) {
    .emp-process-step { gap: 40px; }
}
.emp-process-step--last { padding-bottom: 40px; }

.emp-process-step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}
.emp-process-icon {
    width: 48px;
    height: 48px;
    border-radius: 24px;
    background: #343c52;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #1affc3;
    transition: background 0.3s ease;
}
.emp-process-step:hover .emp-process-icon {
    background: #00D9A5;
    color: #343c52;
}
.emp-process-line {
    width: 1px;
    flex: 1;
    margin: 12px 0;
    min-height: 32px;
    background: linear-gradient(to bottom, rgba(52,60,82,0.3), transparent);
}

.emp-process-step-right { padding-top: 8px; }
.emp-process-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.emp-process-num {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #00D9A5;
}
.emp-process-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #343c52;
    margin: 0;
}
.emp-process-desc {
    font-family: Inter, sans-serif;
    font-size: 16px;
    color: #3a4357;
    line-height: 1.625;
    margin: 0;
}

.emp-process-cta { text-align: center; margin-top: 40px; }

/* ════════════════════════════════════════════════
   EMPLOYERS 2026 — SERVICES
   ════════════════════════════════════════════════ */

.emp-services.fl-row > .fl-row-content-wrap { padding: 80px 0 !important; }
@media (min-width: 1024px) {
    .emp-services.fl-row > .fl-row-content-wrap { padding: 112px 0 !important; }
}

.emp-services-header { text-align: center; margin-bottom: 48px; }
.emp-services-label {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px; font-weight: 600;
    letter-spacing: 0.05em; text-transform: uppercase;
    color: #00b88c; margin: 0 0 12px;
}
.emp-services-h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 700; letter-spacing: -0.02em;
    color: #343c52; margin: 0;
}

.emp-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
@media (max-width: 767px) {
    .emp-services-grid { grid-template-columns: 1fr; }
}

.emp-service-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.emp-service-card:hover {
    box-shadow: 0 8px 30px -8px rgba(0,0,0,0.12);
    border-color: rgba(0,217,165,0.5);
}
.emp-service-card--featured {
    border-color: rgba(0,217,165,0.4);
    box-shadow: 0 4px 16px -4px rgba(0,0,0,0.1);
}
.emp-service-name {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700; font-size: 20px;
    color: #343c52; margin: 0 0 12px;
}
.emp-service-desc {
    font-family: Inter, sans-serif;
    font-size: 14px; color: #454e66;
    line-height: 1.7; margin: 0;
}

/* BSS strip */
.emp-bss-strip {
    background: #343c52;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
@media (min-width: 1024px) {
    .emp-bss-strip {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 40px;
    }
}

.emp-bss-eyebrow {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px; font-weight: 600;
    letter-spacing: 0.05em; text-transform: uppercase;
    color: #1affc3; margin: 0 0 8px;
}
.emp-bss-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700; font-size: 24px;
    color: #ffffff; margin: 0 0 8px;
}
.emp-bss-sub {
    font-family: Inter, sans-serif;
    font-size: 14px; color: rgba(255,255,255,0.75);
    line-height: 1.6; margin: 0 0 16px; max-width: 480px;
}
.emp-bss-list {
    display: none;
}
@media (max-width: 639px) {
    .emp-bss-list { grid-template-columns: 1fr; }
}
.emp-bss-item {
    display: flex; align-items: center; gap: 8px;
    font-family: Inter, sans-serif;
    font-size: 13px; color: rgba(255,255,255,0.8);
}
.emp-bss-item svg { flex-shrink: 0; color: #1affc3; }
.emp-bss-right { flex-shrink: 0; }

/* ════════════════════════════════════════════════
   EMPLOYERS 2026 — CONCERNS
   ════════════════════════════════════════════════ */

.emp-concerns.fl-row > .fl-row-content-wrap { padding: 80px 0 !important; }
@media (min-width: 1024px) {
    .emp-concerns.fl-row > .fl-row-content-wrap { padding: 112px 0 !important; }
}

.emp-concerns-wrap { max-width: 768px; margin: 0 auto; }

.emp-concerns-header { text-align: center; margin-bottom: 48px; }
.emp-concerns-label {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #00b88c; margin: 0 0 12px;
}
.emp-concerns-h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 700; letter-spacing: -0.02em;
    color: #343c52; margin: 0 0 16px;
}
.emp-concerns-intro {
    font-family: Inter, sans-serif;
    font-size: 18px; color: #454e66; line-height: 1.7; margin: 0;
}

.emp-concerns-list { display: flex; flex-direction: column; gap: 16px; }

.emp-concern-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.emp-concern-q-row { display: flex; gap: 16px; align-items: flex-start; }
.emp-concern-badge {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(0,217,165,0.1);
    border: 1px solid rgba(0,217,165,0.2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px; font-weight: 700; color: #00b88c;
    margin-top: 2px;
}
.emp-concern-q {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700; font-size: 16px;
    color: #343c52; margin: 0 0 8px;
}
.emp-concern-a {
    font-family: Inter, sans-serif;
    font-size: 14px; color: #454e66;
    line-height: 1.7; margin: 0;
}

.emp-concerns-cta { text-align: center; margin-top: 40px; }

/* ════════════════════════════════════════════════
   EMPLOYERS 2026 — TESTIMONIALS
   ════════════════════════════════════════════════ */

.emp-testimonials.fl-row > .fl-row-content-wrap {
    background: linear-gradient(135deg, #343c52 0%, #454e66 50%, #3a4357 100%);
    padding: 80px 0 !important;
    position: relative;
    overflow: hidden;
}
@media (min-width: 1024px) {
    .emp-testimonials.fl-row > .fl-row-content-wrap { padding: 112px 0 !important; }
}
.emp-testimonials.fl-row > .fl-row-content-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,217,165,0.5), transparent);
}

.emp-testi-header { text-align: center; margin-bottom: 48px; }
.emp-testi-clients-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 9999px;
    margin-bottom: 20px;
    font-family: Inter, sans-serif;
    font-size: 14px; color: rgba(255,255,255,0.75);
}
.emp-testi-avatar-stack { display: flex; }
.emp-testi-avatar-dot {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 2px solid #454e66;
    margin-left: -8px;
}
.emp-testi-avatar-dot:first-child { margin-left: 0; }
.emp-testi-avatar-dot--0 { background: #1affc3; }
.emp-testi-avatar-dot--1 { background: #00D9A5; }
.emp-testi-avatar-dot--2 { background: #00b88c; }

.emp-testi-h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 700; letter-spacing: -0.02em;
    color: #ffffff; margin: 0;
}

.emp-testi-content {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}

/* Featured */
.emp-testi-featured {
    background: rgba(58,67,87,0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(69,78,102,0.3);
    border-radius: 24px;
    padding: 32px;
    margin-bottom: 20px;
}
.emp-testi-quote-icon--lg {
    width: 32px; height: 32px;
    fill: none;
    stroke: rgba(0,217,165,0.3);
    stroke-width: 2px;
    margin-bottom: 16px;
    display: block;
}
.emp-testi-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.emp-testi-star {
    width: 16px; height: 16px;
    fill: #00D9A5; stroke: none;
}
.emp-testi-featured blockquote,
.emp-testi-card blockquote {
    border: none !important;
    padding: 0;
    margin: 0;
    background: none;
}
.emp-testi-featured-quote {
    font-family: Inter, sans-serif;
    font-size: 20px; color: rgba(255,255,255,0.9);
    line-height: 1.6; margin: 0 0 24px;
    font-style: normal;
}

/* Small cards */
.emp-testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media (min-width: 1024px) {
    .emp-testi-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 639px) {
    .emp-testi-grid { grid-template-columns: 1fr; }
}

.emp-testi-card {
    background: rgba(58,67,87,0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(69,78,102,0.3);
    border-radius: 24px;
    padding: 20px;
    display: flex; flex-direction: column;
}
.emp-testi-quote-icon--sm {
    width: 24px; height: 24px;
    fill: none;
    stroke: rgba(0,217,165,0.3);
    stroke-width: 2px;
    margin-bottom: 12px; flex-shrink: 0;
    display: block;
}
.emp-testi-card-quote {
    font-family: Inter, sans-serif;
    font-size: 14px; color: rgba(255,255,255,0.8);
    line-height: 1.6; flex: 1; margin: 0 0 16px;
    font-style: normal;
}

/* Shared author row */
.emp-testi-author-row {
    display: flex; align-items: center; gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(106,122,153,0.2);
}
.emp-testi-avatar {
    border-radius: 50%;
    background: linear-gradient(135deg, #1affc3, #00b88c);
    display: flex; align-items: center; justify-content: center;
    color: #ffffff; font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600; flex-shrink: 0;
}
.emp-testi-avatar--lg { width: 40px; height: 40px; font-size: 14px; }
.emp-testi-avatar--sm { width: 32px; height: 32px; font-size: 12px; }
.emp-testi-name {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px; font-weight: 600;
    color: #ffffff; margin: 0;
}
.emp-testi-company {
    font-family: Inter, sans-serif;
    font-size: 12px; color: rgba(255,255,255,0.5); margin: 0;
}

/* ════════════════════════════════════════════════
   EMPLOYERS 2026 — FINAL CTA
   ════════════════════════════════════════════════ */

.emp-cta.fl-row > .fl-row-content-wrap {
    padding: 96px 0 !important;
    position: relative;
}
@media (min-width: 1024px) {
    .emp-cta.fl-row > .fl-row-content-wrap { padding: 128px 0 !important; }
}
.emp-cta.fl-row > .fl-row-content-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,184,140,0.95), rgba(0,184,140,0.9), rgba(52,60,82,0.95));
    z-index: 0;
}

.emp-cta.fl-row > .fl-row-content-wrap > .fl-row-content {
    position: relative;
    z-index: 1;
}
.emp-cta-module .fl-module-content { position: relative; z-index: 1; }

.emp-cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.emp-cta-eyebrow {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px; font-weight: 600;
    letter-spacing: 0.05em; text-transform: uppercase;
    color: rgba(255,255,255,0.8); margin: 0 0 16px;
}
.emp-cta-h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700; letter-spacing: -0.02em; line-height: 1.15;
    color: #ffffff; margin: 0 0 24px;
}
.emp-cta-sub {
    font-family: Inter, sans-serif;
    font-size: 18px; color: rgba(255,255,255,0.85);
    line-height: 1.7; margin: 0 0 40px;
}
.emp-cta-actions {
    display: flex; flex-wrap: wrap;
    gap: 16px; justify-content: center; align-items: center;
}
.emp-cta-phone {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px; font-weight: 500;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}
.emp-cta-phone:hover { color: #ffffff; text-decoration: none; }

/* ════════════════════════════════════════════════
   EMPLOYERS 2026 — RESPONSIVE SHARED
   ════════════════════════════════════════════════ */

/* Tablet + mobile horizontal padding */
@media (max-width: 1023px) {
    .emp-process.fl-row .fl-row-content,
    .emp-services.fl-row .fl-row-content,
    .emp-concerns.fl-row .fl-row-content,
    .emp-testimonials.fl-row .fl-row-content,
    .emp-cta.fl-row .fl-row-content {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
    .emp-hero-inner { padding: 0 24px; }
}

/* Mobile-only */
@media (max-width: 767px) {
    .emp-btn { font-size: 15px; padding: 12px 22px; }
}

/* Mobile hero buttons — full width stacked (matches NJ flex-col sm:flex-row) */
@media (max-width: 639px) {
    .emp-hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }
    .emp-hero-ctas .emp-btn {
        width: 100%;
        justify-content: center;
    }
    .emp-hero-ctas .emp-cta-phone {
        justify-content: center;
    }
}

/* ════════════════════════════════════════════════
   CONTACT 2026 — HERO
   ════════════════════════════════════════════════ */

.con26-hero.fl-row > .fl-row-content-wrap {
    background: #454e66 !important;
    padding: 128px 0 56px !important;
    position: relative;
    overflow: hidden;
}
@media (min-width: 1024px) {
    .con26-hero.fl-row > .fl-row-content-wrap { padding: 160px 0 80px !important; }
}
/* mesh-gradient overlay */
.con26-hero.fl-row > .fl-row-content-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(at 40% 20%, rgba(0,217,165,0.12) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(167,139,250,0.08) 0px, transparent 50%),
        radial-gradient(at 90% 90%, rgba(0,217,165,0.06) 0px, transparent 40%);
    pointer-events: none;
    z-index: 0;
}
.con26-hero.fl-row > .fl-row-content-wrap > .fl-row-content {
    position: relative;
    z-index: 1;
}

.con26-hero-inner { max-width: 1024px; margin: 0 auto; }

.con26-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 0;
    list-style: none;
}
.con26-bc-link {
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}
.con26-bc-link:hover { color: #ffffff; text-decoration: none; }
.con26-bc-sep {
    width: 14px; height: 14px;
    stroke: rgba(255,255,255,0.3);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}
.con26-bc-current {
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}
.con26-hero-h1 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}
.con26-hero-sub {
    font-family: Inter, sans-serif;
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.7;
    margin: 0 0 32px;
    max-width: 640px;
}
.con26-hero-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #00D9A5;
    color: #343c52;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s ease;
    line-height: 1;
}
.con26-hero-phone-btn:hover { background: #1affc3; color: #343c52; text-decoration: none; }
.con26-hero-phone-btn svg {
    width: 20px; height: 20px;
    stroke: currentColor; fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    flex-shrink: 0;
}

/* ════════════════════════════════════════════════
   CONTACT 2026 — CONTACT CARDS
   ════════════════════════════════════════════════ */

.con26-cards.fl-row > .fl-row-content-wrap {
    background: #f5f3f0 !important;
    padding: 40px 0 !important;
}
.con26-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1024px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .con26-cards-grid { grid-template-columns: repeat(3, 1fr); }
}
.con26-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    text-decoration: none;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.con26-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); border-color: rgba(0,217,165,0.3); text-decoration: none; }
a.con26-card:hover .con26-card-icon { background: #00D9A5; }
a.con26-card:hover .con26-card-icon svg { stroke: #343c52; }
.con26-card-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: #343c52;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease;
}
.con26-card-icon svg {
    width: 20px; height: 20px;
    stroke: #00D9A5; fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    transition: stroke 0.2s ease;
}
.con26-card-label {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: #454e66; margin: 0 0 2px;
}
.con26-card-value {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px; font-weight: 700;
    color: #343c52; margin: 0; line-height: 1.35;
}

/* ════════════════════════════════════════════════
   CONTACT 2026 — FORM + MAP
   ════════════════════════════════════════════════ */

.con26-form-map.fl-row > .fl-row-content-wrap {
    background: #ffffff !important;
    padding: 56px 0 !important;
}
@media (min-width: 1024px) {
    .con26-form-map.fl-row > .fl-row-content-wrap { padding: 80px 0 !important; }
}
.con26-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 1024px;
    margin: 0 auto;
}
@media (min-width: 1024px) {
    .con26-layout { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.con26-col-h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: #343c52;
    margin: 0 0 24px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.con26-address {
    font-family: Inter, sans-serif;
    font-size: 16px; color: #454e66;
    line-height: 1.7; margin-bottom: 16px;
}
.con26-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Inter, sans-serif;
    font-size: 15px; font-weight: 500;
    color: #00b88c; text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}
.con26-contact-link:hover { color: #00D9A5; text-decoration: none; }
.con26-contact-link svg {
    width: 16px; height: 16px;
    stroke: currentColor; fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    flex-shrink: 0;
}
.con26-hours {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f3f0;
    border-radius: 12px;
    padding: 12px 16px;
    font-family: Inter, sans-serif;
    font-size: 14px; color: #454e66;
    margin-top: 16px; margin-bottom: 24px;
}
.con26-hours svg {
    width: 16px; height: 16px;
    stroke: #00D9A5; fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    flex-shrink: 0;
}
.con26-map-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
    border: 1px solid #f3f4f6;
    height: 340px;
}
.con26-map-wrap iframe {
    width: 100%; height: 100%;
    border: 0; display: block;
}

/* ── Gravity Form overrides ── */
.con26-form-col .gform_wrapper { margin: 0; }
.con26-form-col .gfield_label,
.con26-form-col .gfield label {
    font-family: Inter, sans-serif;
    font-size: 14px; font-weight: 500;
    color: #343c52; margin-bottom: 6px;
    display: block;
}
.con26-form-col .gfield input[type="text"],
.con26-form-col .gfield input[type="email"],
.con26-form-col .gfield input[type="tel"],
.con26-form-col .gfield textarea,
.con26-form-col .gfield select,
.con26-form-col .ginput_container input,
.con26-form-col .ginput_container textarea,
.con26-form-col .ginput_container select {
    width: 100%; padding: 10px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-family: Inter, sans-serif;
    font-size: 14px; color: #343c52;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}
.con26-form-col .gfield input:focus,
.con26-form-col .gfield textarea:focus,
.con26-form-col .gfield select:focus,
.con26-form-col .ginput_container input:focus,
.con26-form-col .ginput_container textarea:focus {
    outline: none;
    border-color: #00D9A5;
    box-shadow: 0 0 0 3px rgba(0,217,165,0.15);
}
.con26-form-col .gfield textarea,
.con26-form-col .ginput_container textarea { resize: none; min-height: 120px; }
.con26-form-col .gform_footer input[type="submit"],
.con26-form-col .gform_footer button[type="submit"],
.con26-form-col .gform_button {
    width: 100%;
    background: #00D9A5;
    color: #343c52;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px; font-weight: 700;
    padding: 12px 24px;
    border: none; border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.con26-form-col .gform_footer input[type="submit"]:hover,
.con26-form-col .gform_footer button[type="submit"]:hover,
.con26-form-col .gform_button:hover { background: #1affc3; }
.con26-privacy {
    font-family: Inter, sans-serif;
    font-size: 12px; color: #9ca3af;
    text-align: center; margin-top: 12px;
}
.con26-privacy a { color: #00b88c; text-decoration: underline; }
.con26-privacy a:hover { color: #00D9A5; }

/* Hide GF "required fields" indicator */
.con26-form-col .gform_required_legend { display: none !important; }

/* Force border-radius on GF inputs */
.con26-form-col input[type="text"],
.con26-form-col input[type="email"],
.con26-form-col input[type="tel"],
.con26-form-col input[type="number"],
.con26-form-col textarea,
.con26-form-col select {
    border-radius: 12px !important;
    border: 1px solid #e5e7eb !important;
    padding: 10px 16px !important;
    font-family: Inter, sans-serif !important;
    font-size: 14px !important;
    color: #343c52 !important;
    background: #ffffff !important;
    box-sizing: border-box !important;
    width: 100% !important;
}
.con26-form-col input[type="text"]:focus,
.con26-form-col input[type="email"]:focus,
.con26-form-col input[type="tel"]:focus,
.con26-form-col textarea:focus,
.con26-form-col select:focus {
    border-color: #00D9A5 !important;
    box-shadow: 0 0 0 3px rgba(0,217,165,0.15) !important;
    outline: none !important;
}
/* GF spacing between fields */
.con26-form-col .gfield { margin-bottom: 16px; }
.con26-form-col .gform_fields { list-style: none; padding: 0; margin: 0; }

/* ════════════════════════════════════════════════
   CONTACT 2026 — RESPONSIVE
   ════════════════════════════════════════════════ */

@media (max-width: 1023px) {
    .con26-hero.fl-row .fl-row-content,
    .con26-cards.fl-row .fl-row-content,
    .con26-form-map.fl-row .fl-row-content {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}
@media (max-width: 767px) {
    .con26-hero.fl-row > .fl-row-content-wrap { padding: 100px 0 48px !important; }
    .con26-hero-h1 { font-size: 32px; }
    .con26-hero-sub { font-size: 16px; }
    .con26-hero-phone-btn { font-size: 16px; padding: 12px 22px; gap: 10px; }
}

/* ════════════════════════════════════════════════
   JOIN US 2026 — HERO
   ════════════════════════════════════════════════ */

.ju26-hero.fl-row > .fl-row-content-wrap {
    background: #454e66 !important;
    padding: 128px 0 80px !important;
    position: relative;
    overflow: hidden;
}
@media (min-width: 1024px) {
    .ju26-hero.fl-row > .fl-row-content-wrap { padding: 176px 0 112px !important; }
}
.ju26-hero.fl-row > .fl-row-content-wrap::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(at 40% 20%, rgba(0,217,165,0.12) 0px, transparent 50%),
        radial-gradient(at 80% 0%,  rgba(167,139,250,0.08) 0px, transparent 50%),
        radial-gradient(at 90% 90%, rgba(0,217,165,0.06) 0px, transparent 40%);
    pointer-events: none; z-index: 0;
}
.ju26-hero.fl-row > .fl-row-content-wrap > .fl-row-content { position: relative; z-index: 1; }

.ju26-hero-inner {
    max-width: 768px;
    margin: 0 auto;
}
.ju26-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    pointer-events: none;
}
.ju26-orb-1 { width: 288px; height: 288px; top: 80px; right: 10%; background: rgba(0,217,165,0.15); animation: floatingOrb 6s ease-in-out infinite; }
.ju26-orb-2 { width: 224px; height: 224px; bottom: 0;  left: 5%;  background: rgba(0,217,165,0.10); animation: floatingOrb 6s ease-in-out infinite 2s; }
.ju26-orb-3 { width: 128px; height: 128px; top: 50%;  left: 33%; background: rgba(0,217,165,0.08); animation: floatingOrb 6s ease-in-out infinite 4s; }
@keyframes floatingOrb {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-20px); }
}

.ju26-hero-content { position: relative; z-index: 1; text-align: center; }

.ju26-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: rgba(0,217,165,0.10);
    border: 1px solid rgba(0,217,165,0.30);
    margin-bottom: 28px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1affc3;
}
.ju26-badge-icon svg {
    width: 16px; height: 16px;
    stroke: currentColor; fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    flex-shrink: 0;
}

.ju26-hero-h1 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
}
.ju26-hero-gradient {
    background: linear-gradient(to right, #1affc3, #66ffdf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ju26-hero-sub {
    font-family: Inter, sans-serif;
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.7;
    margin: 0 0 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 1024px) { .ju26-hero-sub { font-size: 20px; } }

.ju26-hero-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
}
@media (min-width: 640px) { .ju26-hero-btns { flex-direction: row; } }

.ju26-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #00D9A5;
    color: #ffffff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s ease;
    line-height: 1;
}
.ju26-btn-primary:hover { background: #1affc3; color: #ffffff; text-decoration: none; }
.ju26-btn-primary svg {
    width: 16px; height: 16px;
    stroke: currentColor; fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.ju26-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    color: #ffffff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s ease;
    line-height: 1;
}
.ju26-btn-ghost:hover { background: rgba(255,255,255,0.20); color: #ffffff; text-decoration: none; }
.ju26-btn-ghost svg {
    width: 16px; height: 16px;
    stroke: currentColor; fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ════════════════════════════════════════════════
   JOIN US 2026 — STATS STRIP
   ════════════════════════════════════════════════ */

.ju26-stats.fl-row > .fl-row-content-wrap {
    background: linear-gradient(135deg, #00D9A5 0%, #00c494 50%, #00b085 100%) !important;
    padding: 48px 0 !important;
}
@media (min-width: 1024px) {
    .ju26-stats.fl-row > .fl-row-content-wrap { padding: 64px 0 !important; }
}

.ju26-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 1024px;
    margin: 0 auto;
}
@media (min-width: 1024px) {
    .ju26-stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.ju26-stat-card {
    background: rgba(255,255,255,0.20);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.30);
    border-radius: 16px;
    padding: 20px 24px;
    text-align: center;
}
.ju26-stat-val {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px;
    line-height: 1;
}
@media (min-width: 1024px) { .ju26-stat-val { font-size: 36px; } }
.ju26-stat-lbl {
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.80);
    margin: 0;
}

/* ════════════════════════════════════════════════
   JOIN US 2026 — SHARED SECTION HEADER
   ════════════════════════════════════════════════ */

.ju26-section-header {
    text-align: center;
    margin-bottom: 48px;
}
.ju26-label {
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #01b58a;
}
.ju26-divider {
    height: 2px;
    width: 48px;
    background: linear-gradient(to right, #1affc3, #00D9A5);
    border-radius: 9999px;
    margin: 8px auto 16px;
}
.ju26-h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: #343c52;
    margin: 0 0 16px;
    line-height: 1.2;
}
.ju26-section-sub {
    font-family: Inter, sans-serif;
    font-size: 18px;
    color: #454e66;
    line-height: 1.65;
    max-width: 640px;
    margin: 0 auto;
}

/* ════════════════════════════════════════════════
   JOIN US 2026 — BENEFITS
   ════════════════════════════════════════════════ */

.ju26-benefits.fl-row > .fl-row-content-wrap {
    background: #f5f3f0 !important;
    padding: 64px 0 !important;
}
@media (min-width: 1024px) {
    .ju26-benefits.fl-row > .fl-row-content-wrap { padding: 96px 0 !important; }
}

.ju26-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
}
@media (min-width: 640px) {
    .ju26-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .ju26-benefits-grid { grid-template-columns: repeat(4, 1fr); }
}

.ju26-benefit-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.ju26-benefit-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    border-color: rgba(0,217,165,0.50);
}

.ju26-benefit-icon {
    width: 40px; height: 40px;
    background: #343c52;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}
.ju26-benefit-icon svg {
    width: 20px; height: 20px;
    stroke: #1affc3; fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.ju26-benefit-cat {
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #01b58a;
    margin-bottom: 4px;
    display: block;
}
.ju26-benefit-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #343c52;
    margin: 0 0 8px;
    line-height: 1.3;
}
.ju26-benefit-body {
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: #454e66;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* ════════════════════════════════════════════════
   JOIN US 2026 — VALUES (cream centred cards)
   ════════════════════════════════════════════════ */

.ju26-values.fl-row > .fl-row-content-wrap {
    background: #f8f6f3 !important;
    padding: 64px 0 !important;
}
@media (min-width: 1024px) {
    .ju26-values.fl-row > .fl-row-content-wrap { padding: 96px 0 !important; }
}

.ju26-values-wrap {
    max-width: 1024px;
    margin: 0 auto;
}

.ju26-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) {
    .ju26-values-grid { grid-template-columns: repeat(3, 1fr); }
}

.ju26-value-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    padding: 32px;
    text-align: center;
    overflow: hidden;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.ju26-value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, #1affc3, #00D9A5, #1affc3);
    opacity: 0;
    transition: opacity 0.2s ease;
}
.ju26-value-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.10); border-color: rgba(0,217,165,0.50); }
.ju26-value-card:hover::before { opacity: 1; }

.ju26-value-icon {
    width: 56px; height: 56px;
    background: #343c52;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.ju26-value-icon svg {
    width: 24px; height: 24px;
    stroke: #1affc3; fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.ju26-value-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #343c52;
    margin: 0 0 12px;
}
.ju26-value-body {
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: #454e66;
    line-height: 1.65;
    margin: 0;
}

/* ════════════════════════════════════════════════
   JOIN US 2026 — CULTURE QUOTE
   ════════════════════════════════════════════════ */

.ju26-quote.fl-row > .fl-row-content-wrap {
    background: #f5f3f0 !important;
    padding: 56px 0 !important;
}

.ju26-quote-wrap {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}
.ju26-quote-mark {
    font-size: 56px;
    font-family: Georgia, serif;
    line-height: 1;
    color: #00D9A5;
    margin-bottom: 16px;
}
.ju26-quote-text {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #343c52;
    line-height: 1.6;
    margin: 0 0 24px;
    font-style: normal;
    border: none;
    padding: 0;
    background: none;
}
@media (min-width: 1024px) { .ju26-quote-text { font-size: 24px; } }
.ju26-quote-attr {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.ju26-quote-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #343c52;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ju26-quote-avatar span {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1affc3;
}
.ju26-quote-who { text-align: left; }
.ju26-quote-name {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #343c52;
    margin: 0;
}
.ju26-quote-role {
    font-family: Inter, sans-serif;
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

/* ════════════════════════════════════════════════
   JOIN US 2026 — CTA
   ════════════════════════════════════════════════ */

.ju26-cta.fl-row > .fl-row-content-wrap {
    position: relative;
    padding: 80px 0 !important;
    overflow: hidden;
}
@media (min-width: 1024px) {
    .ju26-cta.fl-row > .fl-row-content-wrap { padding: 112px 0 !important; }
}
.ju26-cta.fl-row > .fl-row-content-wrap::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.ju26-cta.fl-row > .fl-row-content-wrap::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,176,133,0.95), rgba(0,176,133,0.90), rgba(52,60,82,0.95));
    z-index: 1;
}
.ju26-cta.fl-row > .fl-row-content-wrap > .fl-row-content { position: relative; z-index: 2; }

.ju26-cta-overlay { max-width: 1280px; margin: 0 auto; }

.ju26-cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
@media (min-width: 1024px) {
    .ju26-cta-grid { grid-template-columns: 1fr 1fr; }
}

.ju26-cta-eyebrow {
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.70);
    display: block;
}
.ju26-cta-h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    color: #ffffff;
    margin: 8px 0 16px;
    line-height: 1.2;
}
.ju26-cta-body {
    font-family: Inter, sans-serif;
    font-size: 18px;
    color: rgba(255,255,255,0.80);
    line-height: 1.65;
    margin: 0 0 24px;
}
.ju26-cta-small {
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin: 0 0 32px;
}
.ju26-cta-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
@media (min-width: 640px) { .ju26-cta-btns { flex-direction: row; } }

.ju26-cta-btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #00b085;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.20);
    transition: background 0.2s ease;
    line-height: 1;
}
.ju26-cta-btn-phone:hover { background: rgba(255,255,255,0.90); color: #00b085; text-decoration: none; }
.ju26-cta-btn-phone svg {
    width: 16px; height: 16px;
    stroke: currentColor; fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.ju26-cta-btn-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.30);
    color: #ffffff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s ease;
    line-height: 1;
}
.ju26-cta-btn-email:hover { background: rgba(255,255,255,0.25); color: #ffffff; text-decoration: none; }
.ju26-cta-btn-email svg {
    width: 16px; height: 16px;
    stroke: currentColor; fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* Right column */
.ju26-cta-right { display: flex; flex-direction: column; gap: 16px; }

.ju26-cta-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 16px;
    padding: 24px;
}
.ju26-cta-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.ju26-cta-avatar {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: rgba(255,255,255,0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ju26-cta-avatar span {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}
.ju26-cta-person-name {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 2px;
}
.ju26-cta-person-role {
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #66ffdf;
    margin: 0 0 12px;
}
.ju26-cta-person-bio {
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin: 0;
}
.ju26-cta-card-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.ju26-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.70);
    text-decoration: none;
    transition: color 0.2s ease;
}
.ju26-cta-link:hover { color: #ffffff; text-decoration: none; }
.ju26-cta-link svg {
    width: 14px; height: 14px;
    stroke: #1affc3; fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* Quick facts */
.ju26-quick-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.ju26-quick-fact {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 12px 16px;
}
.ju26-qf-label {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 2px;
}
.ju26-qf-sub {
    font-family: Inter, sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin: 0;
}

/* ════════════════════════════════════════════════
   JOIN US 2026 — RESPONSIVE
   ════════════════════════════════════════════════ */

@media (max-width: 1023px) {
    .ju26-hero.fl-row .fl-row-content,
    .ju26-stats.fl-row .fl-row-content,
    .ju26-benefits.fl-row .fl-row-content,
    .ju26-values.fl-row .fl-row-content,
    .ju26-quote.fl-row .fl-row-content,
    .ju26-cta.fl-row .fl-row-content {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}
@media (max-width: 767px) {
    .ju26-hero.fl-row > .fl-row-content-wrap { padding: 100px 0 64px !important; }
    .ju26-hero-h1 { font-size: 48px; }
    .ju26-hero-sub { font-size: 16px; margin-bottom: 32px; }
    .ju26-quote-text { font-size: 18px; }
    .ju26-btn-primary,
    .ju26-btn-ghost { width: 100%; }
}

/* ════════════════════════════════════════════════
   BUSINESS SUPPORT SERVICES 2026 — SERVICES (tab + accordion)
   ════════════════════════════════════════════════ */

.bss26-services.fl-row > .fl-row-content-wrap {
    background: #f5f3f0 !important;
    padding: 64px 0 !important;
}
@media (min-width: 1024px) {
    .bss26-services.fl-row > .fl-row-content-wrap { padding: 96px 0 !important; }
}

.bss26-wrap { max-width: 1280px; margin: 0 auto; }

/* Tab toggle */
.bss26-tabs { display: flex; justify-content: center; margin-bottom: 48px; }
.bss26-tabs-inner {
    display: inline-flex;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 6px;
    gap: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.bss26-tab {
    padding: 12px 24px;
    border-radius: 14px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: transparent;
    color: #454e66;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    line-height: 1;
    white-space: nowrap;
}
.bss26-tab--active { background: #343c52; color: #ffffff; box-shadow: 0 1px 3px rgba(0,0,0,0.15); }
.bss26-tab:not(.bss26-tab--active):hover { background: #f0ede9 !important; color: #343c52 !important; box-shadow: none !important; border: none !important; }
.bss26-tab--active:hover { border: none !important; }

/* Panel */
.bss26-panel--hidden { display: none !important; }
.bss26-panel-label {
    font-family: Inter, sans-serif;
    font-size: 14px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: #01b58a; margin: 0 0 12px;
}
.bss26-panel-h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700; color: #343c52;
    margin: 0 0 12px; line-height: 1.2;
}
.bss26-panel-desc {
    font-family: Inter, sans-serif;
    font-size: 16px; color: #454e66;
    line-height: 1.7; margin: 0 0 40px; max-width: 640px;
}

/* Accordion items */
.bss26-accordion { display: flex; flex-direction: column; gap: 12px; }

.bss26-acc-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.bss26-acc-item--open { border-color: rgba(0,217,165,0.40); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.bss26-acc-item:not(.bss26-acc-item--open):hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.bss26-acc-item:not(.bss26-acc-item--open):hover .bss26-acc-icon { background: #e9eaf0; color: #343c52; }
.bss26-acc-item:not(.bss26-acc-item--open):hover .bss26-acc-chev { background: #e9eaf0; color: #343c52; }

.bss26-acc-trigger {
    width: 100%; display: flex; align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: transparent !important;
    border: none; cursor: pointer;
    text-align: left; gap: 16px;
    transition: background 0.15s ease;
    color: inherit !important;
}
.bss26-acc-trigger:hover,
.bss26-acc-trigger:focus {
    background: #f8f7f5 !important;
    color: inherit !important;
    border: none !important;
    outline: none;
}
.bss26-acc-trigger-left { display: flex; align-items: center; gap: 16px; flex: 1; }

.bss26-acc-icon {
    width: 40px; height: 40px; border-radius: 12px;
    background: #f3f4f6; color: #454e66;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: background 0.2s, color 0.2s;
}
.bss26-acc-item--open .bss26-acc-icon { background: #00D9A5; color: #ffffff; }
.bss26-acc-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.bss26-acc-lbl {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px; font-weight: 700; color: #343c52;
}

.bss26-acc-chev {
    width: 36px; height: 36px; border-radius: 50%;
    background: #f3f4f6; color: #454e66;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: all 0.2s;
}
.bss26-acc-item--open .bss26-acc-chev { background: #00D9A5; color: #ffffff; transform: rotate(180deg); }
.bss26-acc-chev svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Accordion body */
.bss26-acc-body { display: none; border-top: 1px solid #f3f4f6; padding: 32px 28px; }
.bss26-acc-item--open .bss26-acc-body { display: block; }

.bss26-acc-grid {
    display: grid; grid-template-columns: 1fr;
    gap: 32px; align-items: start;
}
@media (min-width: 1024px) { .bss26-acc-grid { grid-template-columns: 1fr 300px; } }

.bss26-acc-desc { font-family: Inter, sans-serif; font-size: 16px; color: #454e66; line-height: 1.7; margin: 0 0 24px; }
.bss26-acc-h3 { font-family: "Plus Jakarta Sans", sans-serif; font-size: 20px; font-weight: 700; color: #343c52; margin: 0 0 12px; }
.bss26-acc-detail { font-family: Inter, sans-serif; font-size: 15px; color: #454e66; line-height: 1.7; margin: 0 0 24px; }

/* Callout box */
.bss26-callout {
    background: rgba(0,217,165,0.05);
    border: 1px solid rgba(0,217,165,0.20);
    border-radius: 14px; padding: 20px; margin: 0 0 24px;
}
.bss26-callout-h { font-family: "Plus Jakarta Sans", sans-serif; font-size: 15px; font-weight: 700; color: #343c52; margin: 0 0 12px; }
.bss26-callout-ul { list-style: none; padding: 0; margin: 0; }
.bss26-callout-ul li {
    display: flex; gap: 8px;
    font-family: Inter, sans-serif; font-size: 14px; color: #454e66; line-height: 1.5;
    margin-bottom: 8px;
}
.bss26-callout-ul li::before { content: '→'; color: #00D9A5; flex-shrink: 0; }

/* Benefits */
.bss26-benefits-h { font-family: "Plus Jakarta Sans", sans-serif; font-size: 15px; font-weight: 700; color: #343c52; margin: 0 0 12px; }
.bss26-benefits-ul { list-style: none; padding: 0; margin: 0 0 24px; }
.bss26-benefits-ul li {
    display: flex; gap: 12px;
    font-family: Inter, sans-serif; font-size: 14px; color: #454e66; line-height: 1.6;
    margin-bottom: 10px; align-items: flex-start;
}
.bss26-chk { color: #00D9A5; flex-shrink: 0; margin-top: 1px; }
.bss26-chk svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Industry chips */
.bss26-ind-h { font-family: "Plus Jakarta Sans", sans-serif; font-size: 15px; font-weight: 700; color: #343c52; margin: 0 0 12px; }
.bss26-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.bss26-chip { background: #343c52; color: #ffffff; font-family: Inter, sans-serif; font-size: 12px; font-weight: 500; padding: 6px 14px; border-radius: 9999px; }

/* Enquiry sidebar */
.bss26-sidebar {
    background: #f8f6f3; border: 1px solid #e5e7eb;
    border-radius: 20px; padding: 24px;
}
@media (min-width: 1024px) { .bss26-sidebar { position: sticky; top: 112px; } }
.bss26-sidebar-lbl { font-family: Inter, sans-serif; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #01b58a; margin: 0 0 4px; }
.bss26-sidebar-h3 { font-family: "Plus Jakarta Sans", sans-serif; font-size: 18px; font-weight: 700; color: #343c52; margin: 0 0 16px; }
.bss26-sidebar-div { height: 1px; background: #e5e7eb; margin: 0 0 16px; }
.bss26-sidebar-btn {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; width: 100%;
    background: #00D9A5; color: #ffffff;
    font-family: "Plus Jakarta Sans", sans-serif; font-size: 15px; font-weight: 700;
    padding: 14px 24px; border-radius: 12px;
    text-decoration: none; transition: background 0.2s; margin-bottom: 12px;
    box-sizing: border-box;
}
.bss26-sidebar-btn:hover { background: #00c494; color: #ffffff; text-decoration: none; }
.bss26-sidebar-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bss26-sidebar-note { font-family: Inter, sans-serif; font-size: 12px; color: #9ca3af; text-align: center; margin: 0; }

/* ════════════════════════════════════════════════
   BSS 2026 — CTA (photo + teal gradient)
   ════════════════════════════════════════════════ */

.bss26-cta.fl-row > .fl-row-content-wrap {
    position: relative; padding: 96px 0 !important; overflow: hidden;
}
@media (min-width: 1024px) {
    .bss26-cta.fl-row > .fl-row-content-wrap { padding: 128px 0 !important; }
}
.bss26-cta.fl-row > .fl-row-content-wrap::before {
    content: ''; position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1600&q=80');
    background-size: cover; background-position: center; z-index: 0;
}
.bss26-cta.fl-row > .fl-row-content-wrap::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,158,122,0.95), rgba(0,158,122,0.90), rgba(52,60,82,0.95));
    z-index: 1;
}
.bss26-cta.fl-row > .fl-row-content-wrap > .fl-row-content { position: relative; z-index: 2; }

.bss26-cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.bss26-cta-eyebrow {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px; font-weight: 600;
    letter-spacing: 0.05em; text-transform: uppercase;
    color: rgba(255,255,255,0.80); display: block; margin: 0 0 16px;
}
.bss26-cta-h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700; letter-spacing: -0.02em; line-height: 1.15;
    color: #ffffff; margin: 0 0 24px;
}
.bss26-cta-sub {
    font-family: Inter, sans-serif;
    font-size: 18px; color: rgba(255,255,255,0.85);
    line-height: 1.7; margin: 0 0 40px;
}
.bss26-cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }
.bss26-cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #ffffff; color: #01b58a;
    font-family: "Plus Jakarta Sans", sans-serif; font-size: 16px; font-weight: 700;
    padding: 16px 32px; border-radius: 14px;
    text-decoration: none; box-shadow: 0 8px 24px rgba(0,0,0,0.20);
    transition: background 0.2s; line-height: 1;
}
.bss26-cta-btn:hover { background: rgba(255,255,255,0.92); color: #01b58a; text-decoration: none; }
.bss26-cta-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bss26-cta-phone-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: "Plus Jakarta Sans", sans-serif; font-size: 16px; font-weight: 500;
    color: rgba(255,255,255,0.80); text-decoration: none; transition: color 0.2s;
}
.bss26-cta-phone-link:hover { color: #ffffff; text-decoration: none; }
.bss26-cta-phone-link svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ════════════════════════════════════════════════
   BSS 2026 — RESPONSIVE
   ════════════════════════════════════════════════ */

/* Desktop: add 32px side padding to match NJ Container (max-w-7xl + lg:px-8) */
.bss26-services.fl-row .fl-row-content,
.bss26-cta.fl-row .fl-row-content { padding-left: 32px !important; padding-right: 32px !important; }

@media (max-width: 1023px) {
    .bss26-services.fl-row .fl-row-content,
    .bss26-cta.fl-row .fl-row-content { padding-left: 24px !important; padding-right: 24px !important; }
    .bss26-acc-trigger { padding: 20px; }
    .bss26-acc-body { padding: 24px 20px; }
}
@media (max-width: 767px) {
    .bss26-tabs-inner { width: 100%; }
    .bss26-tab { flex: 1; text-align: center; padding: 8px 10px; font-size: 12px; white-space: normal; line-height: 1.3; }
    .bss26-acc-lbl { font-size: 16px; }
}

/* ==========================================================================
   SEND YOUR CV 2026 (syc26)
   ========================================================================== */

/* ---- Row wrappers ---- */
.fl-row.syc26-hero .fl-row-content-wrap,
.fl-row.sab26-hero .fl-row-content-wrap { padding: 0; }
.fl-row.syc26-cards .fl-row-content-wrap,
.fl-row.sab26-cards .fl-row-content-wrap { padding: 0; }
.fl-row.syc26-form-section .fl-row-content-wrap,
.fl-row.sab26-form-section .fl-row-content-wrap { padding: 0; }
/* Horizontal padding on col-content mirrors Next.js Container lg:px-8 = 32px */
.fl-row.syc26-hero .fl-col-content,
.fl-row.sab26-hero .fl-col-content,
.fl-row.syc26-cards .fl-col-content,
.fl-row.sab26-cards .fl-col-content,
.fl-row.syc26-form-section .fl-col-content,
.fl-row.sab26-form-section .fl-col-content { padding: 0 32px; }

/* Hero bg: match Next.js body colour (#454e66) + mesh gradient overlay */
.fl-row.syc26-hero,
.fl-row.sab26-hero { background-color: #454e66 !important; }
.fl-row.syc26-hero .fl-row-content-wrap,
.fl-row.sab26-hero .fl-row-content-wrap { position: relative; overflow: hidden; }
.fl-row.syc26-hero .fl-row-content-wrap::before,
.fl-row.sab26-hero .fl-row-content-wrap::before {
    content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background:
        radial-gradient(at 40% 20%, rgba(0,217,165,0.12) 0px, transparent 50%),
        radial-gradient(at 80% 0%,  rgba(167,139,250,0.08) 0px, transparent 50%),
        radial-gradient(at 90% 90%, rgba(0,217,165,0.06) 0px, transparent 40%);
}
.fl-row.syc26-hero .fl-col-content,
.fl-row.sab26-hero .fl-col-content { position: relative; z-index: 1; }

/* ---- Hero ---- */
.syc26-hero-module { display: block; }
.syc26-hero-inner {
    max-width: 1024px; margin: 0 auto;
    padding: 160px 0 64px;
}
.syc26-breadcrumb {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 20px;
}
.syc26-bc-link { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.syc26-bc-link:hover { color: #fff; }
.syc26-bc-sep { width: 14px; height: 14px; flex-shrink: 0; }
.syc26-bc-current { color: rgba(255,255,255,0.8); }
.syc26-hero-h1 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 48px; font-weight: 700; color: #ffffff;
    line-height: 1.15; margin: 0 0 16px;
}
.syc26-hero-sub {
    font-family: Inter, sans-serif; font-size: 18px; color: #c8cad1;
    line-height: 1.6; max-width: 640px; margin: 0;
}

/* ---- Why Register cards ---- */
.syc26-cards-module { display: block; }
.syc26-cards-grid {
    max-width: 1024px; margin: 0 auto; padding: 48px 0;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.syc26-card {
    background: #ffffff; border: 1px solid #f0ede9; border-radius: 16px;
    padding: 20px; display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.syc26-card-icon {
    width: 40px; height: 40px; border-radius: 10px; background: #343c52;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.syc26-card-icon svg { width: 20px; height: 20px; color: #00D9A5; }
.syc26-card-label {
    font-family: "Plus Jakarta Sans", sans-serif; font-size: 13px;
    font-weight: 700; color: #343c52; margin: 0; line-height: 1.3;
}
.syc26-card-sub {
    font-family: Inter, sans-serif; font-size: 12px;
    color: #454e66; margin: 0; line-height: 1.4;
}

/* ---- Form + Sidebar layout ---- */
.syc26-form-module { display: block; }
.syc26-layout {
    max-width: 1024px; margin: 0 auto; padding: 80px 0;
    display: grid; grid-template-columns: 3fr 2fr; gap: 48px; align-items: start;
}

/* Form column */
.syc26-col-h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(22px, 2.5vw, 30px); font-weight: 700; color: #343c52;
    margin: 0 0 8px;
}
.syc26-col-intro {
    font-family: Inter, sans-serif; font-size: 15px; color: #454e66;
    line-height: 1.6; margin: 0 0 32px;
}
.syc26-intro-link { color: #01b58a; text-decoration: none; font-weight: 600; }
.syc26-intro-link:hover { color: #00D9A5; }

/* GravityForms styling within syc26 */
.syc26-form-col .gform_wrapper { margin: 0; }
.syc26-form-col .gform_required_legend { font-size: 12px; color: #6b7280; margin-bottom: 16px; }
.syc26-form-col .gsection_title {
    font-family: Inter, sans-serif; font-size: 13px; font-weight: 500;
    color: #343c52; margin: 0 0 6px; letter-spacing: 0;
}
.syc26-form-col .gfield_label {
    font-family: Inter, sans-serif; font-size: 13px; font-weight: 500;
    color: #343c52; margin-bottom: 6px;
}
.syc26-form-col .ginput_container input,
.syc26-form-col .ginput_container select,
.syc26-form-col .ginput_container textarea {
    width: 100%; padding: 10px 16px; border-radius: 12px;
    border: 1px solid #e5e7eb; background: #ffffff;
    font-family: Inter, sans-serif; font-size: 14px; color: #343c52;
    transition: border-color 0.2s, box-shadow 0.2s; outline: none;
    box-sizing: border-box;
}
.syc26-form-col .ginput_container input:focus,
.syc26-form-col .ginput_container select:focus,
.syc26-form-col .ginput_container textarea:focus {
    border-color: #00D9A5; box-shadow: 0 0 0 3px rgba(0,217,165,0.15);
}
.syc26-form-col .gform_footer input[type="submit"],
.syc26-form-col .gform_footer button[type="submit"] {
    width: 100%; background: #00D9A5; color: #343c52;
    font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700;
    font-size: 15px; padding: 14px 24px; border-radius: 12px;
    border: none; cursor: pointer; transition: background 0.2s;
}
.syc26-form-col .gform_footer input[type="submit"]:hover,
.syc26-form-col .gform_footer button[type="submit"]:hover {
    background: #1affc3; border: none !important;
}

/* Sidebar */
.syc26-sidebar { display: flex; flex-direction: column; gap: 20px; }

.syc26-sidebar-speak {
    background: #343c52; border-radius: 20px; padding: 24px;
    display: flex; flex-direction: column; gap: 0;
}
.syc26-sidebar-h3 {
    font-family: "Plus Jakarta Sans", sans-serif; font-size: 17px;
    font-weight: 700; color: #ffffff; margin: 0 0 10px;
}
.syc26-sidebar-h3--dark { color: #343c52; }
.syc26-sidebar-p {
    font-family: Inter, sans-serif; font-size: 13px;
    color: rgba(255,255,255,0.7); line-height: 1.6; margin: 0 0 20px;
}
.syc26-btn-phone {
    display: block; width: 100%; text-align: center;
    background: #00D9A5; color: #343c52;
    font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 15px;
    padding: 12px 20px; border-radius: 12px; text-decoration: none;
    transition: background 0.2s; margin-bottom: 10px; box-sizing: border-box;
}
.syc26-btn-phone:hover { background: #1affc3; color: #343c52; }
.syc26-btn-email {
    display: block; width: 100%; text-align: center;
    background: rgba(255,255,255,0.1); color: #ffffff;
    font-family: Inter, sans-serif; font-weight: 600; font-size: 13px;
    padding: 12px 20px; border-radius: 12px; text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2); transition: background 0.2s;
    box-sizing: border-box;
}
.syc26-btn-email:hover { background: rgba(255,255,255,0.2); color: #ffffff; }

.syc26-sidebar-next {
    background: #f5f3f0; border-radius: 20px; padding: 24px;
}
.syc26-steps-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.syc26-step { display: flex; gap: 12px; align-items: flex-start; }
.syc26-step-num {
    width: 24px; height: 24px; border-radius: 50%;
    background: rgba(0,217,165,0.2); color: #00a37c;
    font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 11px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.syc26-step-text { font-family: Inter, sans-serif; font-size: 13px; color: #454e66; line-height: 1.5; }

.syc26-sidebar-jobs {
    border: 1px solid #e5e7eb; border-radius: 20px; padding: 20px;
}
.syc26-jobs-label {
    font-family: Inter, sans-serif; font-size: 11px; font-weight: 600;
    color: #454e66; text-transform: uppercase; letter-spacing: 0.08em;
    margin: 0 0 12px;
}
.syc26-btn-jobs {
    display: block; width: 100%; text-align: center;
    background: #ffffff; border: 1px solid #00D9A5; color: #01b58a;
    font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 13px;
    padding: 12px 20px; border-radius: 12px; text-decoration: none;
    transition: background 0.2s; box-sizing: border-box;
}
.syc26-btn-jobs:hover { background: rgba(0,217,165,0.05); color: #01b58a; }

/* ---- Responsive ---- */
@media (max-width: 1023px) {
    .fl-row.syc26-hero .fl-col-content,
    .fl-row.sab26-hero .fl-col-content,
    .fl-row.syc26-cards .fl-col-content,
    .fl-row.sab26-cards .fl-col-content,
    .fl-row.syc26-form-section .fl-col-content,
    .fl-row.sab26-form-section .fl-col-content { padding: 0 24px; }
    .syc26-hero-inner { padding: 128px 0 48px; }
    .syc26-hero-h1 { font-size: 36px; }
    .syc26-layout { padding: 56px 0; gap: 32px; }
    .syc26-cards-grid { padding: 48px 0; }
}
@media (max-width: 767px) {
    .fl-row.syc26-hero .fl-col-content,
    .fl-row.sab26-hero .fl-col-content,
    .fl-row.syc26-cards .fl-col-content,
    .fl-row.sab26-cards .fl-col-content,
    .fl-row.syc26-form-section .fl-col-content,
    .fl-row.sab26-form-section .fl-col-content { padding: 0 16px; }
    .syc26-hero-inner { padding: 128px 0 48px; }
    .syc26-hero-h1 { font-size: 36px; }
    .syc26-hero-sub { font-size: 16px; }
    .syc26-cards-grid { grid-template-columns: repeat(2, 1fr); padding: 32px 0; gap: 12px; }
    .syc26-layout { grid-template-columns: 1fr; padding: 56px 0; gap: 32px; }
}

/* ============================================================
   Jobs 2026 — j26-*
   ============================================================ */

/* ── Row wrappers ───────────────────────────────────────────── */
.fl-row.j26-hero .fl-row-content-wrap,
.fl-row.j26-main-section .fl-row-content-wrap,
.fl-row.j26-cta .fl-row-content-wrap { padding: 0; }

.fl-row.j26-hero .fl-col-content,
.fl-row.j26-main-section .fl-col-content,
.fl-row.j26-cta .fl-col-content { padding: 0 32px; }

/* ── Hero row ───────────────────────────────────────────────── */
.fl-row.j26-hero { background-color: #454e66 !important; }
.fl-row.j26-hero .fl-row-content-wrap { position: relative; overflow: hidden; }
.fl-row.j26-hero .fl-row-content-wrap::before {
    content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background:
        radial-gradient(at 40% 20%, rgba(0,217,165,0.12) 0px, transparent 50%),
        radial-gradient(at 80% 0%,  rgba(167,139,250,0.08) 0px, transparent 50%),
        radial-gradient(at 90% 90%, rgba(0,217,165,0.06) 0px, transparent 40%);
}
.fl-row.j26-hero .fl-col-content { position: relative; z-index: 1; }

/* ── CTA row ────────────────────────────────────────────────── */
.fl-row.j26-cta .fl-row-content-wrap {
    background:
        linear-gradient(to right, rgba(0,158,122,0.92) 0%, rgba(0,130,106,0.88) 50%, rgba(52,60,82,0.92) 100%),
        url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat
    !important;
}
.fl-row.j26-cta .fl-col-content { position: relative; z-index: 1; }

/* ── Hero inner ─────────────────────────────────────────────── */
.j26-hero-inner {
    padding: 160px 0 80px;
    max-width: 672px;
    margin: 0 auto;
    text-align: center;
}
.j26-vacancy-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 9999px;
    background: rgba(0,217,165,0.10);
    border: 1px solid rgba(0,217,165,0.30);
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500;
    color: #1affc3;
}
.j26-brief-icon { width: 16px; height: 16px; flex-shrink: 0; }
.j26-hero-h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700; line-height: 1.1; letter-spacing: -0.03em;
    color: #fff; margin: 0 0 20px;
}
.j26-gradient-text {
    background: linear-gradient(to right, #1affc3, #00D9A5);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.j26-hero-sub {
    font-family: 'Inter', sans-serif; font-size: 18px; line-height: 1.6;
    color: rgba(255,255,255,0.75); margin: 0 0 32px;
}
.j26-hero-search-wrap {
    position: relative; max-width: 560px; margin: 0 auto;
}
.j26-search-icon-lg {
    position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
    width: 20px; height: 20px; color: #9ca3af; pointer-events: none;
}
.fl-row.j26-hero .j26-hero-search,
.j26-hero-search {
    width: 100% !important;
    padding: 16px 48px 16px 48px !important;
    border-radius: 24px !important;
    border: 0 !important;
    outline: none !important;
    -webkit-appearance: none; appearance: none;
    background: #fff !important;
    color: #343c52 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25) !important;
    box-sizing: border-box !important;
}
.fl-row.j26-hero .j26-hero-search:focus,
.j26-hero-search:focus {
    box-shadow: 0 20px 40px rgba(0,0,0,0.25), 0 0 0 3px rgba(0,217,165,0.30) !important;
    outline: none !important;
}
.j26-hero-clr,
.j26-hero-clr:focus,
.j26-hero-clr:active {
    position: absolute !important; right: 16px; top: 50%; transform: translateY(-50%);
    background: none; border: none; cursor: pointer; padding: 0; line-height: 0;
    color: #9ca3af;
}
.j26-hero-clr:hover { color: #6b7280; }
.j26-x-icon { width: 16px; height: 16px; }

/* ── Main section wrap ──────────────────────────────────────── */
.j26-main-wrap { padding: 40px 0 56px; }

/* ── Mobile filter toggle ───────────────────────────────────── */
.j26-mobile-toggle-wrap { display: none; margin-bottom: 20px; }
.j26-mobile-btn {
    display: flex; align-items: center; gap: 8px;
    width: 100%; padding: 12px 16px;
    background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
    font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500;
    color: #343c52; cursor: pointer; box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.j26-sliders-icon { width: 16px; height: 16px; flex-shrink: 0; }
.j26-mobile-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px; border-radius: 9999px;
    background: #00D9A5; color: #fff;
    font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.j26-mobile-chevron { width: 16px; height: 16px; margin-left: auto; transition: transform 0.2s; }

/* ── Layout ─────────────────────────────────────────────────── */
.j26-layout { display: flex; gap: 28px; align-items: flex-start; }

/* ── Sidebar ────────────────────────────────────────────────── */
.j26-sidebar { width: 240px; flex-shrink: 0; }
.j26-sidebar-card {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06); padding: 20px;
    position: sticky; top: 112px;
}
.j26-sidebar-hd {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px;
}
.j26-sidebar-title {
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
    font-size: 16px; color: #343c52;
}
.j26-clear-btn {
    display: inline-flex; align-items: center; gap: 4px;
    background: none; border: none; cursor: pointer; padding: 0;
    font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 500;
    color: #01b58a; transition: color 0.15s;
}
.j26-clear-btn:hover { color: #01daa6; background: transparent; border: none; }
.j26-x-sm-icon { width: 12px; height: 12px; }
.j26-clear-btn-desktop { font-size: 14px; color: #6b7280; transition: color 0.15s; }
.j26-clear-btn-desktop:hover { color: #01daa6; background: transparent; border: none; }

/* ── Sidebar filter label ───────────────────────────────────── */
.j26-filter-label {
    display: block; font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px; font-weight: 600; color: #343c52; margin-bottom: 8px;
}

/* ── Search inside sidebar ──────────────────────────────────── */
.j26-search-grp { border-bottom: 1px solid #f3f4f6; padding-bottom: 16px; margin-bottom: 16px; }
.j26-search-input-wrap { position: relative; }
.j26-search-icon-sm {
    position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
    width: 14px; height: 14px; color: #9ca3af; pointer-events: none;
}
.fl-row.j26-main-section .j26-filter-input,
.j26-filter-input {
    width: 100% !important; padding: 10px 12px 10px 32px !important;
    box-sizing: border-box !important; border: 1px solid #e5e7eb !important;
    border-radius: 16px !important; background: #f9fafb !important;
    color: #343c52 !important; font-family: 'Inter', sans-serif !important;
    font-size: 13px !important; outline: none !important;
    -webkit-appearance: none; appearance: none;
}
.fl-row.j26-main-section .j26-filter-input:focus,
.j26-filter-input:focus {
    outline: none !important; border-color: #00D9A5 !important;
    box-shadow: 0 0 0 3px rgba(0,217,165,0.20) !important;
}
.j26-filter-input::placeholder { color: #9ca3af; }

/* ── Accordion ──────────────────────────────────────────────── */
.j26-acc { border-bottom: 1px solid #f3f4f6; padding-bottom: 8px; margin-bottom: 8px; }
.j26-acc:last-of-type { border-bottom: none; margin-bottom: 0; }
.j26-acc-toggle {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    background: none !important; border: none !important; outline: none !important;
    box-shadow: none !important; cursor: pointer; padding: 6px 0; margin-bottom: 8px;
    color: #343c52 !important; -webkit-appearance: none; appearance: none;
}
.j26-acc-toggle:hover { background: none !important; color: #343c52 !important; }
.j26-acc-toggle:focus { outline: none !important; box-shadow: none !important; color: #343c52 !important; }
.j26-acc-title {
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 600;
    color: #343c52;
}
.j26-acc .j26-chevron { width: 16px; height: 16px; color: #9ca3af; transition: transform 0.2s; }
.j26-opts { display: flex; flex-direction: column; gap: 2px; }
.j26-opt {
    width: 100%; text-align: left; padding: 9px 12px; border-radius: 8px;
    border: none !important; outline: none !important; background: none; cursor: pointer;
    box-shadow: none !important; font-family: 'Inter', sans-serif; font-size: 13px;
    color: #454e66 !important; transition: background-color 0.15s;
    -webkit-appearance: none; appearance: none; box-sizing: border-box;
}
.j26-opt:hover { background-color: #f3f4f6 !important; color: #454e66 !important; border: none !important; box-shadow: none !important; }
.j26-opt:focus { outline: none !important; box-shadow: none !important; color: #454e66 !important; }
.j26-opt:active { outline: none !important; box-shadow: none !important; }
.j26-opt.j26-opt-active,
.j26-opt.j26-opt-active:hover { background-color: #343c52 !important; color: #fff !important; font-weight: 600; }

/* ── Salary range ───────────────────────────────────────────── */
.j26-salary-grp { padding-top: 4px; }
.j26-salary-inputs { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.j26-salary-input {
    flex: 1; min-width: 0; padding: 8px 10px;
    border: 1px solid #e5e7eb; border-radius: 12px;
    background: #f9fafb; color: #343c52;
    font-family: 'Inter', sans-serif; font-size: 13px; box-sizing: border-box;
}
.j26-salary-input:focus { outline: none; border-color: #00D9A5; box-shadow: 0 0 0 3px rgba(0,217,165,0.20); }
.j26-salary-input::placeholder { color: #9ca3af; }
.j26-salary-sep { font-size: 13px; color: #9ca3af; flex-shrink: 0; }
.j26-sal-clear-btn {
    display: inline-flex; align-items: center; gap: 4px;
    background: none; border: none; cursor: pointer; padding: 0;
    font-family: 'Inter', sans-serif; font-size: 12px; color: #01b58a; transition: color 0.15s;
}
.j26-sal-clear-btn:hover { color: #01daa6; background: transparent; border: none; }

/* ── CV nudge ───────────────────────────────────────────────── */
.j26-cv-nudge {
    margin-top: 20px; background: #343c52; border-radius: 12px;
    padding: 16px; text-align: center;
}
.j26-nudge-text { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.75); margin: 0 0 6px; }
.j26-nudge-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700;
    color: #1affc3; text-decoration: none;
}
.j26-nudge-link:hover { color: #00D9A5; }
.j26-nudge-link .j26-arrow-icon { width: 12px; height: 12px; }

/* ── Results column ─────────────────────────────────────────── */
.j26-results-col { flex: 1; min-width: 0; }
.j26-results-hd {
    display: flex; flex-wrap: wrap; align-items: center;
    justify-content: space-between; gap: 12px; margin-bottom: 20px;
}
.j26-count-text {
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px;
    font-weight: 700; color: #343c52; margin: 0;
}
.j26-count-sub { font-family: 'Inter', sans-serif; font-size: 14px; color: #6b7280; margin: 4px 0 0; }

/* ── Filter pills ───────────────────────────────────────────── */
.j26-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.j26-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px; border-radius: 9999px;
    background: #fff; border: 1px solid rgba(0,217,165,0.40);
    font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 500; color: #01b58a;
}
.j26-pill-x {
    background: none; border: none; cursor: pointer; padding: 0; line-height: 1;
    color: inherit; font-size: 14px; transition: color 0.15s;
}
.j26-pill-x:hover { color: #01daa6; background: transparent; border: none; }

/* ── Job grid ───────────────────────────────────────────────── */
.j26-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* ── Job card ───────────────────────────────────────────────── */
.j26-card {
    background: #fff; border-radius: 16px; border: 1px solid #e5e7eb;
    padding: 24px; box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    display: flex; flex-direction: column;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.j26-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.10); border-color: rgba(0,217,165,0.50); }
.j26-card-featured { border-color: rgba(0,217,165,0.40); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }

/* Featured tag */
.j26-featured-tag { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.j26-featured-dot { width: 6px; height: 6px; border-radius: 9999px; background: #00D9A5; flex-shrink: 0; }
.j26-featured-label {
    font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
    color: #01b58a; text-transform: uppercase; letter-spacing: 0.08em;
}

/* Badges */
.j26-card-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.j26-badge {
    font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600;
    padding: 4px 10px; border-radius: 9999px;
}
.j26-badge-sector     { background: #343c52; color: #00D9A5; }
.j26-badge-permanent  { background: rgba(0,217,165,0.10); color: #01b58a; border: 1px solid rgba(0,217,165,0.30); }
.j26-badge-temporary  { background: #fffbeb; color: #b45309; border: 1px solid #fde68a; }
.j26-badge-contract   { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.j26-badge-hybrid     { background: #faf5ff; color: #7c3aed; border: 1px solid #e9d5ff; }
.j26-badge-default    { background: #f3f4f6; color: #454e66; border: 1px solid #e5e7eb; }

/* Card title */
.j26-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px;
    font-weight: 700; color: #343c52; line-height: 1.3; margin: 0 0 12px;
}

/* Card meta */
.j26-card-meta { display: flex; flex-wrap: wrap; gap: 4px 16px; margin-bottom: 16px; }
.j26-meta-item {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Inter', sans-serif; font-size: 13px; color: #454e66;
}
.j26-meta-icon { width: 14px; height: 14px; flex-shrink: 0; }

/* Card description */
.j26-card-desc {
    font-family: 'Inter', sans-serif; font-size: 13px; line-height: 1.6;
    color: #454e66; margin: 0 0 20px; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* Card footer */
.j26-card-foot { border-top: 1px solid #f3f4f6; padding-top: 16px; margin-top: auto; }
.j26-view-job {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700;
    color: #01b58a; text-decoration: none;
    transition: gap 0.15s, color 0.15s;
}
.j26-view-job:hover { color: #343c52; gap: 12px; }
.j26-arrow-icon { width: 16px; height: 16px; }

/* ── Empty state ────────────────────────────────────────────── */
.j26-empty {
    background: #fff; border-radius: 16px; border: 1px solid #e5e7eb;
    padding: 64px 32px; text-align: center;
}
.j26-empty-icon { width: 48px; height: 48px; color: #e5e7eb; margin: 0 auto 16px; }
.j26-empty-title {
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 700;
    color: #343c52; margin: 0 0 8px;
}
.j26-empty-sub {
    font-family: 'Inter', sans-serif; font-size: 15px; color: #6b7280;
    max-width: 360px; margin: 0 auto 24px; line-height: 1.6;
}
.j26-btn-register {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 12px;
    background: #343c52; color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700;
    text-decoration: none; transition: background 0.15s;
}
.j26-btn-register:hover { background: #454e66; color: #fff !important; }
.j26-btn-register .j26-arrow-icon { width: 16px; height: 16px; }

/* ── CTA section ────────────────────────────────────────────── */
.j26-cta-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 40px; align-items: center; padding: 80px 0;
}
.j26-cta-label {
    font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.75); margin: 0 0 12px;
}
.j26-cta-h2 {
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(28px, 3vw, 36px);
    font-weight: 700; color: #fff; margin: 0 0 16px; line-height: 1.2;
}
.j26-cta-sub {
    font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.65;
    color: rgba(255,255,255,0.82); margin: 0 0 24px;
}
.j26-cta-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.j26-btn-submit {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 12px;
    background: #fff; color: #01b58a;
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700;
    text-decoration: none; box-shadow: 0 10px 30px rgba(0,0,0,0.20);
    transition: background 0.15s, box-shadow 0.15s;
}
.j26-btn-submit:hover { background: rgba(255,255,255,0.92); box-shadow: 0 14px 36px rgba(0,0,0,0.25); }
.j26-cta-arrow { width: 16px; height: 16px; }
.j26-btn-phone-cta {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
    color: rgba(255,255,255,0.80); text-decoration: none;
    transition: color 0.15s;
}
.j26-btn-phone-cta:hover { color: #fff; }
.j26-btn-phone-cta .j26-cta-icon { width: 16px; height: 16px; }
.j26-cta-right { display: flex; flex-direction: column; gap: 16px; }
.j26-cta-card {
    display: flex; align-items: center; gap: 16px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 16px; padding: 20px;
    backdrop-filter: blur(8px);
}
.j26-cta-card-icon-wrap {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,0.20);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.j26-cta-icon { width: 20px; height: 20px; color: #fff; }
.j26-cta-card-title {
    font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600;
    color: #fff; margin: 0 0 2px;
}
.j26-cta-card-link {
    font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(255,255,255,0.70);
    text-decoration: none; transition: color 0.15s;
}
.j26-cta-card-link:hover { color: #fff; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1023px) {
    .fl-row.j26-hero .fl-col-content,
    .fl-row.j26-main-section .fl-col-content,
    .fl-row.j26-cta .fl-col-content { padding: 0 24px; }
    .j26-hero-inner { padding: 128px 0 64px; }
    .j26-layout { flex-direction: column; gap: 0; }
    .j26-mobile-toggle-wrap { display: block; }
    .j26-sidebar { display: none; width: 100%; margin-bottom: 16px; }
    .j26-sidebar.j26-sidebar-open { display: block; }
    .j26-sidebar-card { position: static; }
    .j26-grid { grid-template-columns: repeat(2, 1fr); }
    .j26-cta-inner { grid-template-columns: 1fr; padding: 64px 0; gap: 32px; }
}

@media (max-width: 767px) {
    .fl-row.j26-hero .fl-col-content,
    .fl-row.j26-main-section .fl-col-content,
    .fl-row.j26-cta .fl-col-content { padding: 0 16px; }
    .j26-hero-inner { padding: 110px 0 48px; }
    .j26-hero-h1 { font-size: 48px; }
    .j26-hero-sub { font-size: 16px; }
    .j26-main-wrap { padding: 24px 0 40px; }
    .j26-sidebar { margin-bottom: 20px; }
    .j26-grid { grid-template-columns: 1fr; gap: 12px; }
    .j26-cta-inner { padding: 48px 0; }
    .j26-cta-actions { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   SPECIALISMS 2026 (sp26)
   ========================================================================== */

/* ── Sectors row ─────────────────────────────────────────────── */
.sp26-sectors.fl-row > .fl-row-content-wrap {
    background: #f5f3f0;
    padding: 80px 0 !important;
}
@media (min-width: 1024px) {
    .sp26-sectors.fl-row > .fl-row-content-wrap { padding: 112px 0 !important; }
}
.sp26-sectors.fl-row .fl-row-content { padding-left: 32px !important; padding-right: 32px !important; }

/* ── Grid ────────────────────────────────────────────────────── */
.sp26-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ── Card ────────────────────────────────────────────────────── */
.sp26-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 28px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.sp26-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    border-color: rgba(0,217,165,0.5);
    text-decoration: none;
}

.sp26-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0,217,165,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
    transition: background 0.2s;
}
.sp26-card:hover .sp26-card-icon { background: #00D9A5; }
.sp26-card-icon svg {
    width: 24px; height: 24px;
    stroke: #00D9A5; fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    transition: stroke 0.2s;
}
.sp26-card:hover .sp26-card-icon svg { stroke: #ffffff; }

.sp26-card-name {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #343c52;
    margin: 0 0 8px;
    transition: color 0.2s;
}
.sp26-card:hover .sp26-card-name { color: #01b58a; }

.sp26-card-desc {
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: #454e66;
    line-height: 1.6;
    margin: 0 0 20px;
    flex: 1;
}

.sp26-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
}
.sp26-pill {
    font-family: Inter, sans-serif;
    font-size: 12px;
    color: #454e66;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    padding: 4px 10px;
}

.sp26-card-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #00D9A5;
    transition: gap 0.2s;
    margin-top: auto;
}
.sp26-card:hover .sp26-card-link { gap: 12px; }
.sp26-card-link svg {
    width: 16px; height: 16px;
    stroke: currentColor; fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1023px) {
    .sp26-sectors.fl-row .fl-row-content { padding-left: 24px !important; padding-right: 24px !important; }
    .sp26-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .sp26-sectors.fl-row .fl-row-content { padding-left: 16px !important; padding-right: 16px !important; }
    .sp26-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ═══════════════════════════════════════════════════════════════
   SPECIALISM DETAIL 2026 (spd26) — shared across all 9 detail pages
   ═══════════════════════════════════════════════════════════════ */

/* ── Row 1: Content + Sidebar ────────────────────────────────── */
.spd26-content-row.fl-row > .fl-row-content-wrap { background: #f5f3f0; padding: 80px 0 !important; }
@media (min-width: 1024px) { .spd26-content-row.fl-row > .fl-row-content-wrap { padding: 112px 0 !important; } }
.spd26-content-row .fl-row-content { padding-left: 32px !important; padding-right: 32px !important; }
@media (max-width: 1023px) { .spd26-content-row .fl-row-content { padding-left: 24px !important; padding-right: 24px !important; } }
@media (max-width: 767px) { .spd26-content-row .fl-row-content { padding-left: 16px !important; padding-right: 16px !important; } }

.spd26-breadcrumb { display: flex; align-items: center; gap: 8px; font-family: Inter, sans-serif; font-size: 14px; color: rgba(69,78,102,0.6); margin-bottom: 40px; }
.spd26-bc-link { color: inherit; text-decoration: none; transition: color 0.2s; }
.spd26-bc-link:hover { color: #00D9A5; }
.spd26-bc-sep { margin: 0 2px; opacity: 0.5; }
.spd26-bc-current { color: #343c52; font-weight: 500; }

.spd26-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
@media (max-width: 1139px) { .spd26-layout { grid-template-columns: 1fr; } }

.spd26-intro { font-family: Inter, sans-serif; font-size: 18px; color: #454e66; line-height: 1.7; margin: 0 0 16px; }
.spd26-intro2 { font-family: Inter, sans-serif; font-size: 16px; color: #454e66; line-height: 1.7; margin: 0 0 24px; }
.spd26-roles-label { font-family: Inter, sans-serif; font-size: 16px; font-weight: 500; color: #454e66; margin: 0 0 16px; }
.spd26-roles-list { list-style: none; padding: 0; margin: 0 0 40px; display: flex; flex-direction: column; gap: 8px; }
.spd26-role-item { display: flex; align-items: center; gap: 12px; font-family: Inter, sans-serif; font-size: 16px; color: #454e66; }
.spd26-role-item svg { width: 16px; height: 16px; stroke: #00D9A5; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.spd26-services { border-top: 1px solid #e5e7eb; padding-top: 32px; }
.spd26-services-h2 { font-family: "Plus Jakarta Sans", sans-serif; font-size: 24px; font-weight: 700; color: #343c52; margin: 0 0 16px; }
.spd26-services-p { font-family: Inter, sans-serif; font-size: 16px; color: #454e66; line-height: 1.7; margin: 0; }

.spd26-sidebar { display: flex; flex-direction: column; gap: 20px; }
@media (min-width: 1024px) { .spd26-sidebar { position: sticky; top: 112px; } }

.spd26-sidebar-card { background: #ffffff; border-radius: 16px; border: 1px solid #e5e7eb; padding: 24px; box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
.spd26-sidebar-h3 { font-family: "Plus Jakarta Sans", sans-serif; font-size: 18px; font-weight: 700; color: #343c52; margin: 0 0 16px; padding-bottom: 12px; border-bottom: 1px solid #f3f4f6; }
.spd26-sidebar-h3--sm { font-size: 16px; }
.spd26-contact-links { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.spd26-contact-link { display: flex; align-items: center; gap: 8px; font-family: Inter, sans-serif; font-size: 14px; color: #454e66; text-decoration: none; transition: color 0.2s; }
.spd26-contact-link:hover { color: #00D9A5; text-decoration: none; }
.spd26-contact-link svg { width: 16px; height: 16px; stroke: #00D9A5; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.spd26-sidebar-btns { display: flex; flex-direction: column; gap: 8px; }
.spd26-sb-btn-primary { display: block; text-align: center; font-family: "Plus Jakarta Sans", sans-serif; font-size: 15px; font-weight: 600; color: #ffffff; background: #00D9A5; padding: 12px 20px; border-radius: 12px; text-decoration: none; transition: background 0.2s; }
.spd26-sb-btn-primary:hover { background: #00c494; color: #ffffff; text-decoration: none; }
.spd26-sb-btn-secondary { display: block; text-align: center; font-family: "Plus Jakarta Sans", sans-serif; font-size: 15px; font-weight: 600; color: #343c52; border: 2px solid #e5e7eb; padding: 10px 20px; border-radius: 12px; text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.spd26-sb-btn-secondary:hover { border-color: #00D9A5; color: #00D9A5; text-decoration: none; }
.spd26-sectors-list { display: flex; flex-direction: column; gap: 6px; }
.spd26-sector-link { display: block; text-align: center; font-family: Inter, sans-serif; font-size: 14px; font-weight: 500; color: #ffffff; background: #454e66; padding: 10px 16px; border-radius: 10px; text-decoration: none; transition: background 0.2s; }
.spd26-sector-link:hover { background: #00D9A5; color: #ffffff; text-decoration: none; }

/* ── Row 2: Testimonials ─────────────────────────────────────── */
.spd26-testimonials.fl-row > .fl-row-content-wrap { background: #343c52; padding: 80px 0 !important; }
@media (min-width: 1024px) { .spd26-testimonials.fl-row > .fl-row-content-wrap { padding: 112px 0 !important; } }
.spd26-testimonials .fl-row-content { padding-left: 32px !important; padding-right: 32px !important; }
@media (max-width: 767px) { .spd26-testimonials .fl-row-content { padding-left: 16px !important; padding-right: 16px !important; } }

.spd26-t-header { text-align: center; margin-bottom: 48px; }
.spd26-t-label { font-family: "Plus Jakarta Sans", sans-serif; font-size: 12px; font-weight: 600; color: #00D9A5; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 12px; }
.spd26-t-h2 { font-family: "Plus Jakarta Sans", sans-serif; font-size: clamp(28px, 4vw, 36px); font-weight: 700; color: #ffffff; margin: 0; }
.spd26-t-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 40px; }
@media (max-width: 1139px) { .spd26-t-grid { grid-template-columns: 1fr; } }
.spd26-t-card { background: rgba(58,67,87,0.5); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 32px; }
.spd26-t-quote-icon { margin-bottom: 16px; }
.spd26-t-quote-icon svg { width: 32px; height: 32px; stroke: rgba(0,217,165,0.6); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.spd26-t-text { font-family: Inter, sans-serif; font-size: 16px; color: rgba(255,255,255,0.9); line-height: 1.7; font-style: italic; margin: 0 0 24px; }
.spd26-t-author { font-family: "Plus Jakarta Sans", sans-serif; font-size: 14px; font-weight: 600; color: #00D9A5; margin: 0 0 4px; }
.spd26-t-company { font-family: Inter, sans-serif; font-size: 14px; color: rgba(255,255,255,0.5); margin: 0; }
.spd26-t-cta { text-align: center; }
.spd26-t-btn { display: inline-flex; align-items: center; gap: 8px; font-family: "Plus Jakarta Sans", sans-serif; font-size: 16px; font-weight: 600; color: #ffffff; border: 2px solid rgba(255,255,255,0.6); padding: 14px 28px; border-radius: 12px; text-decoration: none; transition: background 0.2s, border-color 0.2s; }
.spd26-t-btn:hover { background: rgba(255,255,255,0.1); border-color: #ffffff; color: #ffffff; text-decoration: none; }
.spd26-t-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }

/* ── Row 3: Find the Right Fit CTA (split) ───────────────────── */
.spd26-fit-cta.fl-row > .fl-row-content-wrap { padding: 0 !important; }
.spd26-fit-cta .fl-row-content { max-width: none !important; padding: 0 !important; width: 100% !important; }
.spd26-fit-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
@media (max-width: 1139px) { .spd26-fit-grid { grid-template-columns: 1fr; } }
.spd26-fit-text { position: relative; padding: 80px 64px; background: #343c52; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
@media (max-width: 767px) { .spd26-fit-text { padding: 60px 24px; } }
.spd26-fit-text::before { content: ''; position: absolute; top: 40px; right: 0; width: 192px; height: 192px; border-radius: 50%; background: rgba(0,217,165,0.1); filter: blur(48px); pointer-events: none; }
.spd26-fit-inner { position: relative; z-index: 1; max-width: 400px; }
.spd26-fit-h2 { font-family: "Plus Jakarta Sans", sans-serif; font-size: clamp(28px, 4vw, 36px); font-weight: 700; color: #ffffff; margin: 0 0 16px; }
.spd26-fit-p { font-family: Inter, sans-serif; font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.7; margin: 0 0 32px; }
.spd26-fit-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.spd26-fit-btn-primary { display: inline-flex; align-items: center; gap: 8px; font-family: "Plus Jakarta Sans", sans-serif; font-size: 16px; font-weight: 600; color: #ffffff; background: #00D9A5; padding: 14px 28px; border-radius: 12px; text-decoration: none; transition: background 0.2s; }
.spd26-fit-btn-primary:hover { background: #00c494; color: #ffffff; text-decoration: none; }
.spd26-fit-btn-outline { display: inline-flex; align-items: center; gap: 8px; font-family: "Plus Jakarta Sans", sans-serif; font-size: 16px; font-weight: 600; color: #ffffff; border: 2px solid rgba(255,255,255,0.6); padding: 12px 28px; border-radius: 12px; text-decoration: none; transition: background 0.2s, border-color 0.2s; }
.spd26-fit-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #ffffff; color: #ffffff; text-decoration: none; }
.spd26-fit-image { position: relative; min-height: 320px; overflow: hidden; }
.spd26-fit-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.spd26-fit-image::after { content: ''; position: absolute; inset: 0; background: rgba(69,78,102,0.3); }

/* ── Row 4: How Can We Help ──────────────────────────────────── */
.spd26-help.fl-row > .fl-row-content-wrap { background: #f8f6f3; padding: 80px 0 !important; }
@media (min-width: 1024px) { .spd26-help.fl-row > .fl-row-content-wrap { padding: 96px 0 !important; } }
.spd26-help .fl-row-content { padding-left: 32px !important; padding-right: 32px !important; }
@media (max-width: 767px) { .spd26-help .fl-row-content { padding-left: 16px !important; padding-right: 16px !important; } }
.spd26-help-h2 { font-family: "Plus Jakarta Sans", sans-serif; font-size: clamp(28px, 4vw, 36px); font-weight: 700; color: #343c52; text-align: center; margin: 0 0 48px; }
.spd26-help-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 640px; margin: 0 auto; }
@media (max-width: 1139px) { .spd26-help-grid { grid-template-columns: 1fr; } }
.spd26-help-card { background: #ffffff; border-radius: 16px; border: 1px solid #e5e7eb; padding: 32px; text-align: center; box-shadow: 0 1px 3px rgba(0,0,0,0.08); transition: box-shadow 0.2s, border-color 0.2s; }
.spd26-help-card:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.1); border-color: rgba(0,217,165,0.4); }
.spd26-help-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(0,217,165,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.spd26-help-icon svg { width: 24px; height: 24px; stroke: #00D9A5; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.spd26-help-h3 { font-family: "Plus Jakarta Sans", sans-serif; font-size: 20px; font-weight: 700; color: #343c52; margin: 0 0 12px; }
.spd26-help-p { font-family: Inter, sans-serif; font-size: 14px; color: #454e66; line-height: 1.6; margin: 0 0 16px; }
.spd26-help-link { font-family: "Plus Jakarta Sans", sans-serif; font-size: 14px; font-weight: 600; color: #00D9A5; text-decoration: none; transition: color 0.2s; }
.spd26-help-link:hover { color: #01b58a; text-decoration: none; }
.spd26-help-btn { display: inline-block; font-family: "Plus Jakarta Sans", sans-serif; font-size: 14px; font-weight: 600; color: #ffffff; background: #00D9A5; padding: 10px 24px; border-radius: 10px; text-decoration: none; transition: background 0.2s; }
.spd26-help-btn:hover { background: #00c494; color: #ffffff; text-decoration: none; }

/* ================================================================
   RESOURCES 2026 (res26-)
   Page: /resources-2026/
   ================================================================ */

/* ── Row 0: Hero ─────────────────────────────────────────────── */
.fl-row.res26-hero { background-color: #454e66 !important; }
.fl-row.res26-hero .fl-row-content-wrap { padding: 0; position: relative; overflow: hidden; }
.fl-row.res26-hero .fl-row-content-wrap::before {
    content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background:
        radial-gradient(at 40% 20%, rgba(0,217,165,0.12) 0px, transparent 50%),
        radial-gradient(at 80% 0%,  rgba(167,139,250,0.08) 0px, transparent 50%),
        radial-gradient(at 90% 90%, rgba(0,217,165,0.06) 0px, transparent 40%);
}
.fl-row.res26-hero .fl-col-content { position: relative; z-index: 1; padding: 0 32px; }
@media (max-width: 767px) { .fl-row.res26-hero .fl-col-content { padding: 0 16px; } }

.res26-hero-inner { max-width: 1024px; margin: 0 auto; padding: 160px 0 64px; }
.res26-breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.res26-bc-link { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.res26-bc-link:hover { color: #fff; text-decoration: none; }
.res26-bc-sep { width: 14px; height: 14px; flex-shrink: 0; }
.res26-bc-current { color: rgba(255,255,255,0.8); }
.res26-hero-h1 { font-family: "Plus Jakarta Sans", sans-serif; font-size: 48px; font-weight: 700; color: #fff; line-height: 1.15; margin: 0 0 16px; }
@media (max-width: 767px) { .res26-hero-h1 { font-size: 36px; } }
.res26-hero-sub { font-family: Inter, sans-serif; font-size: 18px; color: #c8cad1; line-height: 1.6; max-width: 640px; margin: 0; }

/* ── Row 1: Cards + Quick Links ─────────────────────────────── */
.fl-row.res26-main .fl-row-content-wrap { background: #ffffff; padding: 0; }
.fl-row.res26-main .fl-col-content { padding: 0 32px; }
@media (max-width: 767px) { .fl-row.res26-main .fl-col-content { padding: 0 16px; } }

.res26-main-inner { max-width: 1024px; margin: 0 auto; padding: 56px 0 80px; }
@media (min-width: 1024px) { .res26-main-inner { padding: 80px 0; } }

/* Resource cards */
.res26-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 64px; }
@media (max-width: 767px) { .res26-cards-grid { grid-template-columns: 1fr; } }

.res26-card { background: #fff; border-radius: 16px; border: 1px solid #e5e7eb; box-shadow: 0 1px 3px rgba(0,0,0,0.06); overflow: hidden; display: flex; flex-direction: column; text-decoration: none; transition: box-shadow 0.25s; }
.res26-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,0.12); text-decoration: none; }
.res26-card--blue   { border-color: #bfdbfe; }
.res26-card--teal   { border-color: rgba(0,217,165,0.3); }
.res26-card--purple { border-color: #e9d5ff; }
.res26-card--green  { border-color: #bbf7d0; }

.res26-card-accent { height: 4px; width: 100%; flex-shrink: 0; }
.res26-card--blue   .res26-card-accent   { background: linear-gradient(to right, #60a5fa, #2563eb); }
.res26-card--teal   .res26-card-accent   { background: linear-gradient(to right, #1affc3, #01b58a); }
.res26-card--purple .res26-card-accent   { background: linear-gradient(to right, #c084fc, #9333ea); }
.res26-card--green  .res26-card-accent   { background: linear-gradient(to right, #4ade80, #16a34a); }

.res26-card-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.res26-card-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; box-shadow: 0 2px 6px rgba(0,0,0,0.12); flex-shrink: 0; }
.res26-card--blue   .res26-card-icon { background: linear-gradient(to bottom right, #60a5fa, #2563eb); }
.res26-card--teal   .res26-card-icon { background: linear-gradient(to bottom right, #1affc3, #01b58a); }
.res26-card--purple .res26-card-icon { background: linear-gradient(to bottom right, #c084fc, #9333ea); }
.res26-card--green  .res26-card-icon { background: linear-gradient(to bottom right, #4ade80, #16a34a); }
.res26-card-icon svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.res26-card-h2 { font-family: "Plus Jakarta Sans", sans-serif; font-size: 20px; font-weight: 700; color: #343c52; margin: 0 0 8px; transition: color 0.2s; }
.res26-card:hover .res26-card-h2 { color: #01b58a; }
.res26-card-desc { font-family: Inter, sans-serif; font-size: 14px; color: #454e66; line-height: 1.6; margin: 0 0 20px; flex: 1; }
.res26-card-cta { display: inline-flex; align-items: center; gap: 6px; font-family: "Plus Jakarta Sans", sans-serif; font-size: 14px; font-weight: 600; color: #01b58a; transition: color 0.2s; }
.res26-card:hover .res26-card-cta { color: #00D9A5; }
.res26-card-cta svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.2s; }
.res26-card:hover .res26-card-cta svg { transform: translateX(2px); }

/* Quick links */
.res26-ql { border-top: 1px solid #f3f4f6; padding-top: 48px; }
.res26-ql-label { font-family: Inter, sans-serif; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: #01b58a; margin: 0 0 24px; }
.res26-ql-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 639px) { .res26-ql-grid { grid-template-columns: repeat(2, 1fr); } }
.res26-ql-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; background: #f5f3f0; border-radius: 16px; padding: 20px 16px; border: 1px solid transparent; text-decoration: none; transition: background 0.2s, box-shadow 0.2s, border-color 0.2s; }
.res26-ql-item:hover { background: rgba(0,217,165,0.05); box-shadow: 0 4px 12px rgba(0,0,0,0.08); border-color: rgba(0,217,165,0.2); text-decoration: none; }
.res26-ql-icon { width: 40px; height: 40px; border-radius: 10px; background: #343c52; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s; }
.res26-ql-item:hover .res26-ql-icon { background: #00D9A5; }
.res26-ql-icon svg { width: 20px; height: 20px; stroke: #1affc3; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; transition: stroke 0.2s; }
.res26-ql-item:hover .res26-ql-icon svg { stroke: #343c52; }
.res26-ql-name { font-family: "Plus Jakarta Sans", sans-serif; font-size: 13px; font-weight: 700; color: #343c52; margin: 0; line-height: 1.3; }
.res26-ql-sub { font-family: Inter, sans-serif; font-size: 12px; color: #454e66; margin: 0; line-height: 1.4; }

/* ================================================================
   TESTIMONIALS 2026 (t26-)
   Page: /testimonials-2026/
   ================================================================ */

/* ── Row 0: Hero ─────────────────────────────────────────────── */
.fl-row.t26-hero { background-color: #454e66 !important; }
.fl-row.t26-hero .fl-row-content-wrap { padding: 0; position: relative; overflow: hidden; }
.fl-row.t26-hero .fl-row-content-wrap::before {
    content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background: radial-gradient(at 40% 20%, rgba(0,217,165,0.12) 0px, transparent 50%),
                radial-gradient(at 80% 0%, rgba(167,139,250,0.08) 0px, transparent 50%),
                radial-gradient(at 90% 90%, rgba(0,217,165,0.06) 0px, transparent 40%);
}
.fl-row.t26-hero .fl-row-content-wrap::after {
    content: ''; position: absolute; top: 80px; right: 10%;
    width: 256px; height: 256px; border-radius: 50%;
    background: rgba(0,217,165,0.2); filter: blur(64px);
    pointer-events: none; z-index: 0;
}
.fl-row.t26-hero .fl-col-content { position: relative; z-index: 1; padding: 0 32px; }
@media (max-width: 767px) { .fl-row.t26-hero .fl-col-content { padding: 0 16px; } }

.t26-hero-inner { max-width: 1024px; margin: 0 auto; padding: 160px 0 64px; }
@media (max-width: 767px) { .t26-hero-inner { padding: 120px 0 48px; } }
.t26-breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.t26-bc-link { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.t26-bc-link:hover { color: #fff; text-decoration: none; }
.t26-bc-sep { width: 14px; height: 14px; flex-shrink: 0; }
.t26-bc-current { color: rgba(255,255,255,0.8); }
.t26-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 9999px; background: rgba(0,217,165,0.1); border: 1px solid rgba(0,217,165,0.3); margin-bottom: 24px; }
.t26-badge-dots { display: flex; align-items: center; }
.t26-badge-dot { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid #3a4357; flex-shrink: 0; }
.t26-badge-dot:not(:first-child) { margin-left: -7px; }
.t26-badge-dot--1 { background: #1affc3; }
.t26-badge-dot--2 { background: #00D9A5; }
.t26-badge-dot--3 { background: #01b58a; }
.t26-badge-text { font-family: Inter, sans-serif; font-size: 14px; color: #1affc3; font-weight: 500; }
.t26-hero-h1 { font-family: "Plus Jakarta Sans", sans-serif; font-size: clamp(36px, 4vw, 48px); font-weight: 700; color: #fff; line-height: 1.15; margin: 0 0 16px; }
.t26-hero-h1-accent { background: linear-gradient(to right, #1affc3, #00D9A5); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.t26-hero-sub { font-family: Inter, sans-serif; font-size: 18px; color: #c8cad1; line-height: 1.6; max-width: 640px; margin: 0; }
@media (max-width: 767px) { .t26-hero-sub { font-size: 16px; } }

/* ── Row 1: Tabs + Cards ─────────────────────────────────────── */
.fl-row.t26-tabs-row .fl-row-content-wrap { background: #343c52; padding: 0; position: relative; }
.fl-row.t26-tabs-row .fl-row-content-wrap::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; z-index: 1;
    background: linear-gradient(to right, transparent, rgba(0,217,165,0.5), transparent);
}
.fl-row.t26-tabs-row .fl-col-content { padding: 0 32px; }
@media (max-width: 767px) { .fl-row.t26-tabs-row .fl-col-content { padding: 0 16px; } }
.t26-tabs-inner { max-width: 1024px; margin: 0 auto; padding: 56px 0 80px; }
@media (min-width: 1024px) { .t26-tabs-inner { padding: 80px 0; } }

/* CSS radio tab trick */
#t26-r-clients, #t26-r-candidates { display: none; }
.t26-tab-bar { display: flex; justify-content: center; margin-bottom: 40px; }
.t26-tab-switcher { display: inline-flex; background: rgba(58,67,87,0.6); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 4px; gap: 4px; }
.t26-tab-switcher label { display: inline-block; padding: 10px 28px; border-radius: 8px; font-family: "Plus Jakarta Sans", sans-serif; font-size: 14px; font-weight: 600; color: #9ca3af; cursor: pointer; transition: all 0.2s; user-select: none; }
.t26-tab-switcher label:hover { color: #fff; }
#t26-r-clients:checked ~ .t26-tab-bar .t26-tab-switcher label[for="t26-r-clients"],
#t26-r-candidates:checked ~ .t26-tab-bar .t26-tab-switcher label[for="t26-r-candidates"] { background: #00D9A5; color: #343c52; }
.t26-panel { display: none; }
#t26-r-clients:checked ~ #t26-panel-clients,
#t26-r-candidates:checked ~ #t26-panel-candidates { display: block; }

/* Masonry card grid */
.t26-card-grid { columns: 3; column-gap: 24px; }
@media (max-width: 1023px) { .t26-card-grid { columns: 2; } }
@media (max-width: 639px) { .t26-card-grid { columns: 1; } }
.t26-card { break-inside: avoid; margin-bottom: 24px; background: rgba(58,67,87,0.5); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 24px; transition: border-color 0.2s; }
.t26-card:hover { border-color: rgba(0,217,165,0.4); }
.t26-card-quote { width: 24px; height: 24px; margin-bottom: 12px; stroke: #00D9A5; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; opacity: 0.4; display: block; flex-shrink: 0; }
.t26-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.t26-star { width: 14px; height: 14px; fill: #00D9A5; stroke: #00D9A5; stroke-width: 1; flex-shrink: 0; }
.t26-card-text { font-family: Inter, sans-serif; font-size: 14px; color: #d1d5db; line-height: 1.7; margin: 0 0 20px; }
.t26-card-footer { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
.t26-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(to bottom right, #1affc3, #01b58a); display: flex; align-items: center; justify-content: center; font-family: "Plus Jakarta Sans", sans-serif; font-size: 11px; font-weight: 700; color: #fff; flex-shrink: 0; text-align: center; }
.t26-card-name { font-family: "Plus Jakarta Sans", sans-serif; font-size: 14px; font-weight: 600; color: #fff; margin: 0 0 2px; }
.t26-card-meta { font-family: Inter, sans-serif; font-size: 12px; color: #9ca3af; margin: 0; }

/* ── Row 2: CTA ─────────────────────────────────────────────── */
.fl-row.t26-cta .fl-row-content-wrap {
    position: relative; overflow: hidden; padding: 80px 0 !important;
}
@media (min-width: 1024px) { .fl-row.t26-cta .fl-row-content-wrap { padding: 112px 0 !important; } }
@media (max-width: 767px) { .fl-row.t26-cta .fl-row-content-wrap { padding: 64px 0 !important; } }
.fl-row.t26-cta .fl-row-content-wrap::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background-image: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=1920&q=80');
    background-size: cover; background-position: center;
}
.fl-row.t26-cta .fl-row-content-wrap::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to right, rgba(0,158,122,0.95), rgba(0,217,165,0.9), rgba(52,60,82,0.95));
}
.fl-row.t26-cta .fl-row-content-wrap > .fl-row-content { position: relative; z-index: 2; }
.fl-row.t26-cta .fl-col-content { padding: 0; }
.t26-cta-wrap { padding: 0 32px; }
@media (max-width: 767px) { .t26-cta-wrap { padding: 0 16px; } }
.t26-cta-content { max-width: 1024px; margin: 0 auto; text-align: center; }
.t26-cta-h2 { font-family: "Plus Jakarta Sans", sans-serif; font-size: clamp(28px, 4vw, 48px); font-weight: 700; color: #fff; margin: 0 0 24px; line-height: 1.2; }
.t26-cta-sub { font-family: Inter, sans-serif; font-size: 20px; color: rgba(255,255,255,0.9); margin: 0 auto 40px; max-width: 640px; line-height: 1.5; }
@media (max-width: 767px) { .t26-cta-sub { font-size: 17px; } }
.t26-cta-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 768px; margin: 0 auto 40px; }
@media (max-width: 639px) { .t26-cta-cards { grid-template-columns: 1fr; } }
.t26-cta-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 16px; padding: 24px; text-align: left; }
.t26-cta-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.t26-cta-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.t26-cta-icon svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.t26-cta-card-label { font-family: "Plus Jakarta Sans", sans-serif; font-size: 16px; font-weight: 600; color: #fff; margin: 0 0 2px; }
.t26-cta-card-sub { font-family: Inter, sans-serif; font-size: 14px; color: rgba(255,255,255,0.7); margin: 0; }
.t26-cta-btn-primary { display: flex; align-items: center; justify-content: center; gap: 8px; font-family: "Plus Jakarta Sans", sans-serif; font-size: 16px; font-weight: 600; color: #01b58a; background: #fff; padding: 14px 24px; border-radius: 12px; text-decoration: none; transition: background 0.2s; box-sizing: border-box; }
.t26-cta-btn-primary:hover { background: rgba(255,255,255,0.92); color: #01b58a; text-decoration: none; }
.t26-cta-btn-secondary { display: flex; align-items: center; justify-content: center; gap: 8px; font-family: "Plus Jakarta Sans", sans-serif; font-size: 16px; font-weight: 600; color: #fff; background: rgba(255,255,255,0.2); border: 2px solid rgba(255,255,255,0.3); padding: 12px 24px; border-radius: 12px; text-decoration: none; transition: background 0.2s; box-sizing: border-box; }
.t26-cta-btn-secondary:hover { background: rgba(255,255,255,0.3); color: #fff; text-decoration: none; }
.t26-cta-contact { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.t26-cta-contact a { display: flex; align-items: center; gap: 8px; font-family: "Plus Jakarta Sans", sans-serif; font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.2s; }
.t26-cta-contact a:hover { color: #fff; text-decoration: none; }
.t26-cta-contact svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.t26-cta-sep { color: rgba(255,255,255,0.4); }

/* ============================================================
   PRIVACY POLICY 2026  (pp26-)
   ============================================================ */

/* ── Hero ── */
.fl-row.pp26-hero { background-color: #454e66 !important; }
.fl-row.pp26-hero > .fl-row-content-wrap {
    position: relative; overflow: hidden;
    padding: 128px 0 64px !important;
}
@media (min-width: 1024px) { .fl-row.pp26-hero > .fl-row-content-wrap { padding: 160px 0 80px !important; } }
.fl-row.pp26-hero > .fl-row-content-wrap::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0,217,165,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(26,255,195,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(69,78,102,0.8) 0%, transparent 60%);
}
.fl-row.pp26-hero > .fl-row-content-wrap > .fl-row-content { position: relative; z-index: 1; }
.pp26-hero-inner { max-width: 768px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 767px) { .pp26-hero-inner { padding: 0 20px; } }

.pp26-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.pp26-bc-link { font-family: Inter, sans-serif; font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.pp26-bc-link:hover { color: #fff; text-decoration: none; }
.pp26-bc-sep { width: 14px; height: 14px; stroke: rgba(255,255,255,0.4); flex-shrink: 0; }
.pp26-bc-current { font-family: Inter, sans-serif; font-size: 14px; color: rgba(255,255,255,0.8); }

.pp26-hero-h1 { font-family: "Plus Jakarta Sans", sans-serif; font-size: clamp(32px, 5vw, 48px); font-weight: 700; color: #fff; margin: 0; line-height: 1.15; }

/* ── Content ── */
.fl-row.pp26-content > .fl-row-content-wrap { background: #fff; padding: 80px 0 !important; }
@media (min-width: 1024px) { .fl-row.pp26-content > .fl-row-content-wrap { padding: 96px 0 !important; } }

.pp26-content-inner { max-width: 768px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 767px) { .pp26-content-inner { padding: 0 20px; } }

.pp26-prose p { font-family: Inter, sans-serif; font-size: 16px; color: #3a4357; line-height: 1.75; margin: 0 0 20px; }
.pp26-prose ol { font-family: Inter, sans-serif; font-size: 16px; color: #3a4357; line-height: 1.75; margin: 0 0 20px; padding-left: 24px; }
.pp26-prose ol li { margin-bottom: 4px; }
.pp26-prose h2 { font-family: "Plus Jakarta Sans", sans-serif; font-size: 22px; font-weight: 700; color: #343c52; margin: 40px 0 12px; line-height: 1.3; }
.pp26-prose a { color: #01b58a; text-decoration: none; }
.pp26-prose a:hover { color: #00c49a; text-decoration: underline; }

.pp26-related { margin-top: 64px; padding-top: 32px; border-top: 1px solid #e5e7eb; }
.pp26-related-label { font-family: "Plus Jakarta Sans", sans-serif; font-size: 12px; font-weight: 600; color: #6b7280; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 16px; }
.pp26-related-links { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.pp26-related-links a { font-family: Inter, sans-serif; font-size: 14px; font-weight: 500; color: #01b58a; text-decoration: none; }
.pp26-related-links a:hover { color: #00c49a; text-decoration: underline; }
.pp26-related-sep { color: #d1d5db; }

/* ============================================================
   BLOG 2026  (bl26-)
   ============================================================ */

/* ── Hero ── */
.fl-row.bl26-hero { background-color: #454e66 !important; }
.fl-row.bl26-hero > .fl-row-content-wrap {
    position: relative; overflow: hidden;
    padding: 128px 0 64px !important;
}
@media (min-width: 1024px) { .fl-row.bl26-hero > .fl-row-content-wrap { padding: 160px 0 80px !important; } }
.fl-row.bl26-hero > .fl-row-content-wrap::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0,217,165,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(26,255,195,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(69,78,102,0.8) 0%, transparent 60%);
}
.fl-row.bl26-hero > .fl-row-content-wrap > .fl-row-content { position: relative; z-index: 1; }
.bl26-hero-inner { max-width: 1024px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 1024px) { .bl26-hero-inner { padding: 0; } }
.bl26-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.bl26-bc-link { font-family: Inter, sans-serif; font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.bl26-bc-link:hover { color: #fff; text-decoration: none; }
.bl26-bc-sep { width: 14px; height: 14px; stroke: rgba(255,255,255,0.4); flex-shrink: 0; }
.bl26-bc-current { font-family: Inter, sans-serif; font-size: 14px; color: rgba(255,255,255,0.8); }
.bl26-hero-h1 { font-family: "Plus Jakarta Sans", sans-serif; font-size: clamp(32px, 5vw, 48px); font-weight: 700; color: #fff; margin: 0 0 16px; line-height: 1.15; }
.bl26-hero-sub { font-family: Inter, sans-serif; font-size: 18px; color: rgba(255,255,255,0.75); margin: 0; line-height: 1.6; max-width: 640px; }

/* ── Posts section ── */
.fl-row.bl26-posts > .fl-row-content-wrap { background: #f5f3f0; padding: 80px 0 !important; }
@media (min-width: 1024px) { .fl-row.bl26-posts > .fl-row-content-wrap { padding: 96px 0 !important; } }
.bl26-posts-inner { max-width: 1024px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 1024px) { .bl26-posts-inner { padding: 0; } }
.bl26-section-label { font-family: "Plus Jakarta Sans", sans-serif; font-size: 12px; font-weight: 600; color: #01b58a; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 24px; }

/* Featured 2-col grid */
.bl26-featured-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 56px; }
@media (max-width: 767px) { .bl26-featured-grid { grid-template-columns: 1fr; } }

/* All posts 3-col grid */
.bl26-all-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1023px) { .bl26-all-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 639px) { .bl26-all-grid { grid-template-columns: 1fr; } }

/* Card base */
.bl26-card { display: flex; flex-direction: column; background: #fff; border-radius: 16px; border: 1px solid #e5e7eb; box-shadow: 0 1px 3px rgba(0,0,0,0.07); overflow: hidden; text-decoration: none; transition: box-shadow 0.2s, border-color 0.2s; }
.bl26-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.12); border-color: rgba(0,217,165,0.5); text-decoration: none; }
.bl26-card-img-lg { width: 100%; height: 192px; object-fit: cover; display: block; }
.bl26-card-img-sm { width: 100%; height: 144px; object-fit: cover; display: block; }
.bl26-card-body-lg { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.bl26-card-body-sm { padding: 20px; display: flex; flex-direction: column; flex: 1; }

/* Category badges */
.bl26-badge { display: inline-block; align-self: flex-start; font-family: Inter, sans-serif; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px; border: 1px solid; margin-bottom: 12px; }
.bl26-badge--industry-news   { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }
.bl26-badge--events           { background: #f5f3ff; color: #7c3aed; border-color: #ddd6fe; }
.bl26-badge--employer-advice  { background: rgba(0,217,165,0.1); color: #007a5a; border-color: rgba(0,217,165,0.3); }
.bl26-badge--news             { background: rgba(69,78,102,0.08); color: #454e66; border-color: rgba(69,78,102,0.2); }
.bl26-badge--community        { background: #f0fdf4; color: #15803d; border-color: #bbf7d0; }
.bl26-badge--workplace        { background: #fff7ed; color: #c2410c; border-color: #fed7aa; }
.bl26-badge--candidate-advice { background: #f0fdfa; color: #0f766e; border-color: #99f6e4; }
.bl26-badge--about-us         { background: #f9fafb; color: #6b7280; border-color: #e5e7eb; }

/* Card text */
.bl26-card-title-lg { font-family: "Plus Jakarta Sans", sans-serif; font-size: 18px; font-weight: 700; color: #343c52; line-height: 1.35; margin: 0 0 8px; flex: 1; transition: color 0.2s; }
.bl26-card-title-sm { font-family: "Plus Jakarta Sans", sans-serif; font-size: 15px; font-weight: 700; color: #343c52; line-height: 1.35; margin: 0 0 8px; flex: 1; transition: color 0.2s; }
.bl26-card:hover .bl26-card-title-lg,
.bl26-card:hover .bl26-card-title-sm { color: #01b58a; }
.bl26-card-excerpt-lg { font-family: Inter, sans-serif; font-size: 14px; color: #6b7280; line-height: 1.65; margin: 0 0 16px; }
.bl26-card-excerpt-sm { font-family: Inter, sans-serif; font-size: 13px; color: #6b7280; line-height: 1.65; margin: 0 0 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bl26-read-more { display: inline-flex; align-items: center; gap: 6px; font-family: "Plus Jakarta Sans", sans-serif; font-size: 13px; font-weight: 600; color: #01b58a; }
.bl26-read-more svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.2s; flex-shrink: 0; }
.bl26-card:hover .bl26-read-more svg { transform: translateX(3px); }

/* ============================================================
   CASE STUDIES 2026  (cs26-) — listing page
   ============================================================ */

/* ── Hero ── */
.fl-row.cs26-hero { background-color: #454e66 !important; }
.fl-row.cs26-hero > .fl-row-content-wrap {
    position: relative; overflow: hidden;
    padding: 128px 0 64px !important;
}
@media (min-width: 1024px) { .fl-row.cs26-hero > .fl-row-content-wrap { padding: 160px 0 80px !important; } }
.fl-row.cs26-hero > .fl-row-content-wrap::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0,217,165,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(26,255,195,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(69,78,102,0.8) 0%, transparent 60%);
}
.fl-row.cs26-hero > .fl-row-content-wrap > .fl-row-content { position: relative; z-index: 1; }
.cs26-hero-inner { max-width: 1024px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 1024px) { .cs26-hero-inner { padding: 0; } }
.cs26-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.cs26-bc-link { font-family: Inter, sans-serif; font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.cs26-bc-link:hover { color: #fff; text-decoration: none; }
.cs26-bc-sep { width: 14px; height: 14px; stroke: rgba(255,255,255,0.4); fill: none; flex-shrink: 0; }
.cs26-bc-current { font-family: Inter, sans-serif; font-size: 14px; color: rgba(255,255,255,0.8); }
.cs26-hero-h1 { font-family: "Plus Jakarta Sans", sans-serif; font-size: clamp(32px, 5vw, 48px); font-weight: 700; color: #fff; margin: 0 0 16px; line-height: 1.15; }
.cs26-hero-sub { font-family: Inter, sans-serif; font-size: 18px; color: rgba(255,255,255,0.75); margin: 0; line-height: 1.6; max-width: 640px; }

/* ── Cards section ── */
.fl-row.cs26-cards > .fl-row-content-wrap { background: #fff; padding: 72px 0 !important; }
@media (min-width: 1024px) { .fl-row.cs26-cards > .fl-row-content-wrap { padding: 96px 0 !important; } }
.cs26-inner { max-width: 1024px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 1024px) { .cs26-inner { padding: 0; } }
.cs26-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 1023px) { .cs26-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 639px) { .cs26-grid { grid-template-columns: 1fr; } }
.cs26-card { display: flex; flex-direction: column; background: #fff; border-radius: 16px; border: 1px solid #e5e7eb; box-shadow: 0 1px 3px rgba(0,0,0,0.06); overflow: hidden; text-decoration: none; transition: box-shadow 0.2s, border-color 0.2s; }
.cs26-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); border-color: rgba(0,217,165,0.5); text-decoration: none; }
.cs26-card-bar { height: 6px; background: linear-gradient(to right, #1affc3, #00D9A5); flex-shrink: 0; }
.cs26-card-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.cs26-card-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.cs26-badge { display: inline-block; font-family: Inter, sans-serif; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px; border: 1px solid; }
.cs26-badge--finance    { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }
.cs26-badge--nfp        { background: #f0fdf4; color: #15803d; border-color: #bbf7d0; }
.cs26-badge--healthcare { background: #f5f3ff; color: #7c3aed; border-color: #ddd6fe; }
.cs26-badge--type       { background: #f9fafb; color: #454e66; border-color: #e5e7eb; }
.cs26-card-h2 { font-family: "Plus Jakarta Sans", sans-serif; font-size: 17px; font-weight: 700; color: #343c52; line-height: 1.35; margin: 0 0 12px; flex: 1; transition: color 0.2s; }
.cs26-card:hover .cs26-card-h2 { color: #01b58a; }
.cs26-card-excerpt { font-family: Inter, sans-serif; font-size: 13.5px; color: #6b7280; line-height: 1.65; margin: 0 0 20px; }
.cs26-card-cta { display: inline-flex; align-items: center; gap: 6px; font-family: "Plus Jakarta Sans", sans-serif; font-size: 13px; font-weight: 600; color: #01b58a; margin-top: auto; }
.cs26-card-cta svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.2s; flex-shrink: 0; }
.cs26-card:hover .cs26-card-cta svg { transform: translateX(3px); }
.cs26-cta-box { margin-top: 64px; background: #343c52; border-radius: 16px; padding: 40px; display: flex; flex-direction: column; gap: 24px; }
@media (min-width: 768px) { .cs26-cta-box { flex-direction: row; align-items: center; justify-content: space-between; gap: 40px; } }
.cs26-cta-h2 { font-family: "Plus Jakarta Sans", sans-serif; font-size: 22px; font-weight: 700; color: #fff; margin: 0 0 8px; }
.cs26-cta-text { font-family: Inter, sans-serif; font-size: 14px; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.6; }
.cs26-cta-btn { flex-shrink: 0; display: inline-block; background: #00D9A5; color: #343c52; font-family: "Plus Jakarta Sans", sans-serif; font-size: 15px; font-weight: 700; padding: 14px 28px; border-radius: 12px; text-decoration: none; transition: background 0.2s; white-space: nowrap; }
.cs26-cta-btn:hover { background: #1affc3; text-decoration: none; color: #343c52; }

/* ============================================================
   CASE STUDY DETAIL 2026  (csd26-) — single pages
   ============================================================ */

/* ── Hero ── */
.fl-row.csd26-hero { background-color: #454e66 !important; }
.fl-row.csd26-hero > .fl-row-content-wrap {
    position: relative; overflow: hidden;
    background-image: none !important;
    margin: 0 !important;
    padding: 128px 0 64px !important;
}
@media (min-width: 1024px) { .fl-row.csd26-hero > .fl-row-content-wrap { padding: 160px 0 80px !important; } }
.fl-row.csd26-hero > .fl-row-content-wrap::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0,217,165,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(26,255,195,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(69,78,102,0.8) 0%, transparent 60%);
}
.fl-row.csd26-hero > .fl-row-content-wrap > .fl-row-content { position: relative; z-index: 1; }
.csd26-hero-inner { max-width: 1024px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 1024px) { .csd26-hero-inner { padding: 0; } }
.csd26-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.csd26-bc-link { font-family: Inter, sans-serif; font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.csd26-bc-link:hover { color: #fff; text-decoration: none; }
.csd26-bc-sep { width: 14px; height: 14px; stroke: rgba(255,255,255,0.4); fill: none; flex-shrink: 0; }
.csd26-bc-current { font-family: Inter, sans-serif; font-size: 14px; color: rgba(255,255,255,0.8); }
.csd26-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.csd26-badge { display: inline-block; font-family: Inter, sans-serif; font-size: 11px; font-weight: 600; padding: 5px 12px; border-radius: 100px; border: 1px solid; }
.csd26-badge--finance    { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }
.csd26-badge--nfp        { background: #f0fdf4; color: #15803d; border-color: #bbf7d0; }
.csd26-badge--healthcare { background: #f5f3ff; color: #7c3aed; border-color: #ddd6fe; }
.csd26-badge--type       { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.2); }
.csd26-badge[data-colour="blue"]   { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }
.csd26-badge[data-colour="green"]  { background: #f0fdf4; color: #15803d; border-color: #bbf7d0; }
.csd26-badge[data-colour="purple"] { background: #faf5ff; color: #7e22ce; border-color: #e9d5ff; }
.csd26-badge[data-colour="orange"] { background: #fff7ed; color: #c2410c; border-color: #fed7aa; }
.csd26-badge[data-colour="navy"]   { background: #f0f4ff; color: #3a4357; border-color: #c7d2f7; }
.csd26-badge:empty { display: none !important; }
.csd26-hero .csd26-badge { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.2); }
.csd26-hero-h1 { font-family: "Plus Jakarta Sans", sans-serif; font-size: clamp(24px, 4vw, 44px); font-weight: 700; color: #fff; margin: 0; line-height: 1.2; max-width: 760px; }

/* ── Content section ── */
.fl-row.csd26-content > .fl-row-content-wrap { background: #fff; padding: 72px 0 !important; }
@media (min-width: 1024px) { .fl-row.csd26-content > .fl-row-content-wrap { padding: 96px 0 !important; } }
.csd26-inner { max-width: 1024px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 1024px) { .csd26-inner { padding: 0; } }
.csd26-layout { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 1024px) { .csd26-layout { grid-template-columns: 1fr 300px; gap: 56px; } }

/* Main column */
.csd26-main > * + * { margin-top: 40px; }
.csd26-section { }
.csd26-h2 { font-family: "Plus Jakarta Sans", sans-serif; font-size: 22px; font-weight: 700; color: #343c52; margin: 0 0 16px; }
.csd26-para { font-family: Inter, sans-serif; font-size: 15px; color: #454e66; line-height: 1.75; margin: 0; }
.csd26-para + .csd26-para { margin-top: 14px; }
.csd26-checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.csd26-checklist li { display: flex; align-items: flex-start; gap: 12px; }
.csd26-check-icon { width: 20px; height: 20px; flex-shrink: 0; stroke: #00D9A5; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; margin-top: 2px; }
.csd26-checklist span { font-family: Inter, sans-serif; font-size: 15px; color: #454e66; line-height: 1.65; }
.csd26-why-box { background: #f5f3f0; border-radius: 16px; padding: 28px; }
.csd26-approach { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.csd26-approach li { display: flex; align-items: flex-start; gap: 12px; }
.csd26-step-num { width: 24px; height: 24px; border-radius: 50%; background: rgba(0,217,165,0.2); color: #007a5a; font-family: "Plus Jakarta Sans", sans-serif; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.csd26-approach span { font-family: Inter, sans-serif; font-size: 15px; color: #454e66; line-height: 1.65; }
.csd26-testimonial { border-left: 4px solid #00D9A5; padding-left: 24px; }
.csd26-quote-icon { width: 32px; height: 32px; margin-bottom: 12px; }
.csd26-quote-icon path { fill: rgba(0,217,165,0.35); }
.csd26-blockquote { font-family: Inter, sans-serif; font-size: 16px; color: #343c52; line-height: 1.8; font-style: italic; margin: 0 0 16px; border: none; border-left: none; padding: 0; background: none; }
.csd26-attribution { font-family: Inter, sans-serif; font-size: 13px; color: #6b7280; font-weight: 600; margin: 0; }

/* Sidebar */
.csd26-sidebar { display: flex; flex-direction: column; gap: 24px; }
@media (min-width: 1024px) { .csd26-sidebar { position: sticky; top: 96px; align-self: start; } }
.csd26-contact-card { background: #343c52; border-radius: 16px; padding: 24px; }
.csd26-contact-h3 { font-family: "Plus Jakarta Sans", sans-serif; font-size: 17px; font-weight: 700; color: #fff; margin: 0 0 8px; }
.csd26-contact-text { font-family: Inter, sans-serif; font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; margin: 0 0 20px; }
.csd26-contact-btn { display: block; text-align: center; background: #00D9A5; color: #343c52; font-family: "Plus Jakarta Sans", sans-serif; font-size: 14px; font-weight: 700; padding: 12px 20px; border-radius: 10px; text-decoration: none; transition: background 0.2s; }
.csd26-contact-btn:hover { background: #1affc3; text-decoration: none; color: #343c52; }
.csd26-contact-links { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 10px; }
.csd26-contact-link { display: flex; align-items: center; gap: 10px; font-family: Inter, sans-serif; font-size: 13px; color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.csd26-contact-link:hover { color: #fff; text-decoration: none; }
.csd26-contact-link svg { width: 15px; height: 15px; stroke: #00D9A5; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.csd26-related-label { font-family: "Plus Jakarta Sans", sans-serif; font-size: 11px; font-weight: 600; color: #343c52; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 12px; }
.csd26-related-cards { display: flex; flex-direction: column; gap: 12px; }
.csd26-rel-card { display: flex; align-items: flex-start; gap: 12px; padding: 16px; border-radius: 12px; border: 1px solid #e5e7eb; text-decoration: none; transition: border-color 0.2s, box-shadow 0.2s; }
.csd26-rel-card:hover { border-color: rgba(0,217,165,0.5); box-shadow: 0 4px 12px rgba(0,0,0,0.07); text-decoration: none; }
.csd26-rel-arrow { width: 16px; height: 16px; stroke: #00D9A5; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 3px; transition: transform 0.2s; }
.csd26-rel-card:hover .csd26-rel-arrow { transform: translateX(2px); }
.csd26-rel-badge { display: inline-block; font-family: Inter, sans-serif; font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 100px; border: 1px solid; margin-bottom: 4px; }
.csd26-rel-title { font-family: "Plus Jakarta Sans", sans-serif; font-size: 13px; font-weight: 600; color: #343c52; line-height: 1.35; margin: 0; transition: color 0.2s; }
.csd26-rel-card:hover .csd26-rel-title { color: #01b58a; }

/* ══════════════════════════════════════════════════════════════════════
   hrp-info-block — Universal green info section
   Row class:        hrp-info-block
   Stacked variant:  hrp-info-block hrp-info-block--stacked
   ══════════════════════════════════════════════════════════════════════ */

.hrp-info-block.fl-row > .fl-row-content-wrap {
    position: relative;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(255,255,255,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 100% 100%, rgba(0,150,115,0.4) 0%, transparent 50%),
        linear-gradient(135deg, #00D9A5 0%, #00b88c 100%) !important;
    padding: 112px 0 80px !important;
}
.hrp-info-block.fl-row > .fl-row-content-wrap::before {
    content: '' !important; display: block !important; position: absolute !important;
    inset: 0 !important; opacity: 0.05; pointer-events: none; z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hrp-info-block.fl-row .fl-row-content {
    max-width: 1280px !important; margin: 0 auto !important;
    padding-left: 32px !important; padding-right: 32px !important;
    position: relative; z-index: 1;
}
.hrp-info-block.fl-row .fl-module { position: relative; z-index: 1; }
.hrp-info-block.fl-row .fl-col-group { display: flex !important; align-items: center; gap: 64px; }
.hrp-info-block.fl-row .fl-col-group::before,
.hrp-info-block.fl-row .fl-col-group::after { display: none !important; content: none !important; }
.hrp-info-block.fl-row .fl-col-group > .fl-col { float: none !important; flex: 0 0 calc(50% - 32px); max-width: calc(50% - 32px); }

/* Typography */
.hrp-info-label { font-family: "Plus Jakarta Sans", sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin: 0 0 16px; }
.hrp-info-h2 .fl-heading { font-family: "Plus Jakarta Sans", sans-serif !important; font-size: clamp(28px, 3.5vw, 40px) !important; font-weight: 700 !important; line-height: 1.2 !important; letter-spacing: -0.02em !important; color: #ffffff !important; margin: 0 0 32px !important; }
.hrp-info-block.fl-row .hrp-info-h2 { margin-bottom: 32px !important; }
.hrp-info-text .fl-rich-text p { font-family: "Inter", sans-serif !important; font-size: 16px !important; line-height: 1.75 !important; color: rgba(255,255,255,0.85) !important; margin: 0 0 16px !important; }
.hrp-info-text .fl-rich-text p:last-child { margin-bottom: 0 !important; }
.hrp-info-block .fl-module.hrp-info-text { margin-bottom: 24px !important; }

/* Left col as flex-wrap row so stat pills sit side-by-side */
.hrp-info-block .fl-col:not(.hrp-info-col-right) .fl-col-content { display: flex !important; flex-direction: row !important; flex-wrap: wrap !important; align-content: flex-start !important; align-items: flex-start !important; }
.hrp-info-block .fl-col:not(.hrp-info-col-right) .fl-col-content > .fl-module:not(.hrp-stat-pill) { flex: 0 0 100% !important; max-width: 100% !important; }
/* Stat pills */
.hrp-info-block .fl-module.hrp-stat-pill { flex: 0 0 auto !important; width: auto !important; margin: 0 12px 12px 0 !important; }
.hrp-info-block .fl-module.hrp-stat-pill .fl-module-content { background: rgba(255,255,255,0.2) !important; backdrop-filter: blur(4px) !important; border-radius: 12px !important; border: 1px solid rgba(255,255,255,0.3) !important; padding: 12px 20px !important; }
.hrp-stat-pill-value { font-family: "Plus Jakarta Sans", sans-serif; font-size: 22px; font-weight: 700; color: #ffffff; margin: 0 0 2px; line-height: 1.1; display: block; }
.hrp-stat-pill-label { font-family: "Inter", sans-serif; font-size: 12px; color: rgba(255,255,255,0.8); margin: 0; line-height: 1.3; display: block; }

/* Photo (right col) */
.hrp-info-photo-wrap { position: relative; border-radius: 24px; overflow: hidden; border: 4px solid rgba(255,255,255,0.2); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); aspect-ratio: 1 / 1; }
.hrp-info-photo-wrap .fl-module-content,
.hrp-info-photo-wrap .fl-photo,
.hrp-info-photo-wrap .fl-photo-content { width: 100% !important; height: 100% !important; }
.hrp-info-photo-wrap .fl-photo-img { width: 100% !important; max-width: none !important; height: 100% !important; object-fit: cover; display: block; }

/* Responsive */
@media (max-width: 1023px) {
    .hrp-info-block.fl-row > .fl-row-content-wrap { padding: 80px 0 56px !important; }
    .hrp-info-block.fl-row .fl-col-group { flex-wrap: wrap !important; gap: 0 !important; align-items: flex-start !important; }
    .hrp-info-block.fl-row .fl-col-group > .fl-col { flex: 0 0 100% !important; max-width: 100% !important; width: 100% !important; }
    .hrp-info-col-right { display: block !important; margin-top: 32px !important; max-width: 480px !important; margin-left: auto !important; margin-right: auto !important; }
}
@media (max-width: 767px) {
    .hrp-info-block.fl-row > .fl-row-content-wrap { padding: 64px 0 56px !important; }
    .hrp-info-block.fl-row .fl-row-content { padding-left: 20px !important; padding-right: 20px !important; }
    .hrp-info-h2 .fl-heading { font-size: 28px !important; }
    .hrp-info-col-right { max-width: 100% !important; }
}

/* ══════════════════════════════════════════════════════════════════════
   hrp-values-cols — Values/features row with overlap effect
   Sits immediately after hrp-info-block; cards overlap the green row above
   ══════════════════════════════════════════════════════════════════════ */

.hrp-values-cols { overflow: visible !important; position: relative; z-index: 10; }
.hrp-values-cols.fl-row > .fl-row-content-wrap { background: #f8f6f3 !important; padding: 0 0 64px !important; overflow: visible !important; }
.hrp-values-cols.fl-row .fl-row-content { max-width: 1280px !important; margin: 0 auto !important; padding: 0 32px !important; }

/* Dark card container — pulled 48px up to overlap the green row */
.hrp-values-cols.fl-row .fl-col-group {
    display: flex !important;
    align-items: stretch !important;
    margin-top: -48px !important;
    background: rgba(58,67,87,0.97) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px !important;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.3), 0 0 0 1px rgba(106,122,153,0.2) !important;
    overflow: hidden !important;
    position: relative;
}
/* Teal gradient accent line on top */
.hrp-values-cols.fl-row .fl-col-group::before {
    content: '' !important; display: block !important; position: absolute !important;
    top: 0 !important; left: 0 !important; right: 0 !important; height: 1px !important;
    background: linear-gradient(90deg, #1affc3, #00D9A5, #1affc3) !important;
    z-index: 100 !important; pointer-events: none !important; width: 100%;
}
.hrp-values-cols.fl-row .fl-col-group::after { display: none !important; content: none !important; }
.hrp-values-cols.fl-row .fl-col-group > .fl-col { float: none !important; }
/* fl-col-content as 2-col grid: icon (48px) | title+text */
.hrp-values-cols.fl-row .fl-col-content { display: grid !important; grid-template-columns: 48px 1fr !important; grid-template-rows: auto auto !important; column-gap: 16px !important; row-gap: 0 !important; align-items: start !important; padding: 32px !important; text-align: left !important; border-right: 1px solid rgba(106,122,153,0.2); box-sizing: border-box; }
.hrp-values-cols.fl-row .fl-col:last-child .fl-col-content { border-right: none !important; }

/* Value card — icon: col 1 spans 2 rows; title: col 2 row 1; text: col 2 row 2 */
.hrp-values-cols .fl-module.hrp-value-icon-mod { grid-column: 1 !important; grid-row: 1 / 3 !important; align-self: start !important; margin-top: 2px !important; }
.hrp-value-icon-mod .fl-module-content { margin: 0 !important; }
.hrp-values-cols .fl-module.hrp-value-title-mod { grid-column: 2 !important; grid-row: 1 !important; align-self: end !important; }
.hrp-values-cols .fl-module.hrp-value-text-mod { grid-column: 2 !important; grid-row: 2 !important; align-self: start !important; }
.hrp-value-icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(0,217,165,0.2); display: flex; align-items: center; justify-content: center; }
.hrp-value-icon svg { width: 20px; height: 20px; stroke: #1affc3; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; display: block; }
.hrp-values-cols .hrp-value-title-mod .fl-heading { font-family: "Plus Jakarta Sans", sans-serif !important; font-size: 16px !important; font-weight: 600 !important; color: #ffffff !important; margin: 0 0 6px !important; line-height: 1.3 !important; }
.hrp-values-cols .hrp-value-text-mod .fl-rich-text p { font-family: "Inter", sans-serif !important; font-size: 14px !important; line-height: 1.6 !important; color: rgba(163,177,208,0.85) !important; margin: 0 !important; }

@media (max-width: 767px) {
    .hrp-values-cols.fl-row > .fl-row-content-wrap { padding: 0 0 48px !important; }
    .hrp-values-cols.fl-row .fl-row-content { padding-left: 20px !important; padding-right: 20px !important; }
    .hrp-values-cols.fl-row .fl-col-group { margin-top: -32px !important; flex-wrap: wrap !important; }
    .hrp-values-cols.fl-row .fl-col-group > .fl-col { flex: 0 0 100% !important; }
    .hrp-values-cols.fl-row .fl-col-group > .fl-col + .fl-col { border-left: none; border-top: 1px solid rgba(106,122,153,0.2); }
}

/* ============================================================
   BLOCKS-2026 LIBRARY — label rows
   ============================================================ */
.blk26-label.fl-row > .fl-row-content-wrap { background: #0f1420 !important; padding: 14px 0 !important; }
.blk26-label.fl-row .fl-row-content { padding: 0 40px !important; }
.blk26-label-inner { display: flex; align-items: center; gap: 12px; }
.blk26-label-tag { font-family: "Inter", monospace; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #00D9A5; }
.blk26-label-name { font-family: "Inter", monospace; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.75); }
.blk26-label-line { flex: 1; height: 1px; background: rgba(255,255,255,0.08); }

/* ============================================================
   HRP-PEOPLE — team grid section
   ============================================================ */
.hrp-people.fl-row > .fl-row-content-wrap { background: #343c52 !important; padding: 80px 0 !important; }
.hrp-people.fl-row .fl-row-content { max-width: 1280px !important; padding: 0 32px !important; }
/* CSS grid: header spans full width, cards fill 4 columns */
.hrp-people .fl-col-content { display: grid !important; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.hrp-people .fl-module.hrp-person-card,
.hrp-people .fl-module.hrp-person-card .fl-module-content,
.hrp-people .fl-module.hrp-person-card .fl-html { height: 100%; }
.hrp-people .fl-module.hrp-people-header { grid-column: 1 / -1; margin-bottom: 12px; }
/* Reset: BB adds display:block to .fl-module — let grid override it */
.hrp-people .fl-module { display: block; }
/* Person card inner */
.hrp-person-inner { background: rgba(69,78,102,0.5); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(69,78,102,0.4); border-radius: 16px; padding: 24px; text-align: center; height: 100%; box-sizing: border-box; transition: border-color 0.2s, background 0.2s; }
.hrp-person-inner:hover { border-color: rgba(0,217,165,0.25); background: rgba(69,78,102,0.7); }
.hrp-person-inner.hrp-person-featured { border-color: rgba(0,217,165,0.35); }
.hrp-person-photo-wrap { position: relative; width: 80px; height: 80px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; flex-shrink: 0; }
.hrp-person-inner.hrp-person-featured .hrp-person-photo-wrap { outline: 2px solid #00D9A5; outline-offset: 2px; }
.hrp-person-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.hrp-person-photo-secondary { position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s ease; }
.hrp-person-has-hover:hover .hrp-person-photo-secondary { opacity: 1; }
.hrp-person-name { font-family: "Plus Jakarta Sans",sans-serif; font-size: 14px; font-weight: 600; color: #fff; margin: 0 0 4px; text-align: center; }
.hrp-person-role { font-size: 12px; color: #00D9A5; margin: 0 0 12px; text-align: center; }
.hrp-person-bio { font-size: 12px; color: #9ca3af; line-height: 1.6; margin: 0; text-align: center; }
/* Header — old HTML module targets (kept for compat) */
.hrp-people-header-inner { text-align: center; max-width: 720px; margin: 0 auto; padding-bottom: 8px; }
.hrp-people-label { font-family: "Plus Jakarta Sans",sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #00D9A5; margin: 0 0 12px; text-align: center; display: block; }
.hrp-people-h2 { font-family: "Plus Jakarta Sans",sans-serif; font-size: clamp(26px,3vw,34px); font-weight: 700; color: #fff; margin: 0 0 16px; line-height: 1.2; text-align: center; }
.hrp-people-desc { font-family: "Inter", sans-serif; font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.6; margin: 0 auto 32px; max-width: 672px; text-align: center; display: block; }
/* Header — native BB Heading + Rich Text modules
   Row-gap is 20px; BB default module margin-bottom is ~12px.
   We cancel those and set proper spacing with margin-top on each item. */
.hrp-people .fl-module.hrp-people-lbl   { margin-bottom: 0 !important; }
.hrp-people .fl-module.hrp-people-title { margin-top: -8px !important; margin-bottom: 0 !important; }
.hrp-people .fl-module.hrp-people-desc-mod { margin-top: -4px !important; margin-bottom: 36px !important; }
/* H2 font override: match Next.js text-h2 = clamp(30px, 3.5vw, 40px) */
.hrp-people-title .fl-heading { font-size: clamp(30px, 3.5vw, 40px) !important; letter-spacing: -0.02em !important; }
.hrp-people-desc-mod .fl-rich-text,
.hrp-people-desc-mod .fl-rich-text p { font-family: "Inter", sans-serif !important; font-size: 18px !important; color: rgba(255,255,255,0.7) !important; line-height: 1.6 !important; text-align: center !important; margin: 0 auto !important; max-width: 672px !important; }
/* Responsive — matches Next.js: xl(1280)=4col, lg(1024)=3col, sm(640)=2col, default=1col */
@media (max-width: 1279px) {
  .hrp-people .fl-col-content { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 1023px) {
  .hrp-people .fl-col-content { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 767px) {
  .hrp-people.fl-row > .fl-row-content-wrap { padding: 64px 0 !important; }
  .hrp-people.fl-row .fl-row-content { padding: 0 20px !important; }
}
@media (max-width: 639px) {
  .hrp-people .fl-col-content { grid-template-columns: 1fr !important; }
}

/* HRP-CLIENT-REVIEWS — single module section */
.hrp-testimonials.fl-row > .fl-row-content-wrap { background: #f8f6f3 !important; padding: 80px 0 !important; }
.hrp-testimonials.fl-row .fl-row-content { max-width: 960px !important; padding: 0 32px !important; }
/* section header */
.hrp-reviews-header { text-align: center; margin-bottom: 40px; }
.hrp-reviews-lbl { font-family: "Plus Jakarta Sans", sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #00B87A; margin: 0 0 12px; }
.hrp-reviews-h2 { font-family: "Plus Jakarta Sans", sans-serif; font-size: clamp(30px, 3.5vw, 40px); font-weight: 700; letter-spacing: -0.02em; color: #343c52; margin: 0; }
/* 2-column grid */
.hrp-reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; align-items: start; }
/* card */
.hrp-testi-inner { position: relative; background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 32px; box-shadow: 0 1px 3px rgba(0,0,0,0.06); height: 100%; box-sizing: border-box; display: flex; flex-direction: column; }
.hrp-testi-quote-icon { position: absolute; top: 24px; right: 24px; width: 32px; height: 32px; fill: none !important; color: rgba(0,217,165,0.25); stroke: currentColor; flex-shrink: 0; }
.hrp-testi-stars { display: flex; gap: 2px; margin-bottom: 20px; }
.hrp-testi-stars svg { width: 16px; height: 16px; fill: #00D9A5; color: #00D9A5; }
.hrp-testi-blockquote { font-family: "Inter", sans-serif !important; font-size: 16px !important; font-weight: 400 !important; color: #343c52 !important; line-height: 1.625 !important; font-style: italic !important; margin: 0 0 24px !important; padding: 0 !important; border: none !important; border-left: none !important; flex: 1; background: none !important; }
.hrp-testi-author-row { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid #f3f4f6; margin-top: auto; }
.hrp-testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: #00D9A5; color: #fff; font-family: "Plus Jakarta Sans", sans-serif; font-size: 13px; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hrp-testi-name { font-family: "Plus Jakarta Sans", sans-serif; font-size: 14px; font-weight: 600; color: #343c52; margin: 0 0 2px; }
.hrp-testi-company { font-size: 12px; color: #6b7280; margin: 0; }
/* CTA */
.hrp-reviews-footer { text-align: center; margin-top: 40px; }
.hrp-testi-cta-btn { display: inline-flex; align-items: center; gap: 8px; background: #00D9A5; color: #fff; font-family: "Plus Jakarta Sans", sans-serif; font-size: 16px; font-weight: 600; padding: 14px 28px; border-radius: 12px; text-decoration: none; transition: background 0.2s, transform 0.2s; box-shadow: 0 4px 14px rgba(0,217,165,0.3); }
.hrp-testi-cta-btn:hover { background: #00b87a; color: #fff; text-decoration: none; transform: translateY(-1px); }
@media (max-width: 767px) {
  .hrp-testimonials.fl-row > .fl-row-content-wrap { padding: 64px 0 !important; }
  .hrp-testimonials.fl-row .fl-row-content { padding: 0 20px !important; }
  .hrp-reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HRP-HERO MODULE — reusable page hero
   ============================================================ */
/* Strip col padding so the module fills the full content area */
.hrp-hero.fl-row .fl-col-content { padding: 0 !important; }
/* Internal 2-col grid: content left, photo right */
.hrp-hero-wrap { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 48px; position: relative; }
.hrp-hero-content { padding-bottom: 112px; }
/* Decorative orbs */
.au2026-hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0; }
.au2026-hero-orb--1 { width: 288px; height: 288px; top: 80px; right: 10%; background: rgba(0,217,165,0.15); }
.au2026-hero-orb--2 { width: 208px; height: 208px; bottom: 40px; left: 5%; background: rgba(0,217,165,0.10); }
/* Badge */
.hrp-hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 9999px; background: rgba(0,217,165,0.10); border: 1px solid rgba(0,217,165,0.30); font-family: "Plus Jakarta Sans", sans-serif; font-size: 13px; font-weight: 500; color: #67e8c9; margin-bottom: 24px; position: relative; z-index: 1; }
/* H1 */
.hrp-hero-h1 { font-family: "Plus Jakarta Sans", sans-serif; font-size: clamp(40px, 5vw, 72px); font-weight: 700; color: #fff; line-height: 1.1; margin: 0 0 24px; position: relative; z-index: 1; }
.hrp-hero-heading-accent { background: linear-gradient(to right, #67e8c9, #a7f3e0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
/* Body text */
.hrp-hero-lead { font-size: 18px; color: #d1d5db; line-height: 1.65; margin: 0 0 20px; position: relative; z-index: 1; }
.hrp-hero-body { color: #9ca3af; line-height: 1.65; margin: 0; position: relative; z-index: 1; }
/* Photo column */
.hrp-hero-photo-side { position: relative; height: 520px; }
.hrp-hero-img-wrap { position: absolute; inset: 0 0 40px 0; border-radius: 24px; overflow: hidden; }
.hrp-hero-img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.hrp-hero-img-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(52,60,82,0.60), transparent); }
/* Responsive */
@media (max-width: 1280px) {
  .hrp-hero-wrap { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 1024px) {
  .hrp-hero-wrap { grid-template-columns: 1fr; }
  .hrp-hero-photo-side { display: none; }
  .hrp-hero-content { padding-bottom: 80px; }
}
@media (max-width: 767px) {
  .hrp-hero-wrap { padding-left: 16px; padding-right: 16px; }
  .hrp-hero-content { padding-bottom: 64px; }
}
/* Centered variant (no photo) */
.hrp-hero-wrap--centered { grid-template-columns: 1fr; }
.hrp-hero-wrap--centered .hrp-hero-content { max-width: 760px; margin: 0 auto; text-align: center; padding-bottom: 0; }
.hrp-hero-wrap--centered .hrp-hero-lead { margin-left: auto; margin-right: auto; }
.hrp-hero-wrap--centered .hrp-hero-ctas { justify-content: center; }

/* CTA row (optional button + phone link) */
.hrp-hero-ctas { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 32px; position: relative; z-index: 1; }
.hrp-hero-cta-btn { display: inline-flex; align-items: center; gap: 10px; background: #00D9A5; color: #343c52; font-family: "Plus Jakarta Sans", sans-serif; font-size: 17px; font-weight: 700; padding: 14px 28px; border-radius: 12px; text-decoration: none; transition: background 0.2s; }
.hrp-hero-cta-btn:hover { background: #1affc3; color: #343c52; text-decoration: none; }
.hrp-hero-cta-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.hrp-hero-cta-phone { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-family: Inter, sans-serif; font-size: 16px; text-decoration: none; transition: color 0.2s; }
.hrp-hero-cta-phone:hover { color: #ffffff; text-decoration: none; }
.hrp-hero-cta-phone svg { width: 18px; height: 18px; flex-shrink: 0; }
.hrp-hero-cta-ghost { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: #ffffff; font-family: "Plus Jakarta Sans", sans-serif; font-size: 17px; font-weight: 700; padding: 14px 28px; border-radius: 12px; border: 2px solid rgba(255,255,255,0.3); text-decoration: none; transition: background 0.2s, border-color 0.2s; }
.hrp-hero-cta-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); color: #ffffff; text-decoration: none; }

/* Services tabs — button hover/focus reset (overrides BB theme global button:hover) */
.hrp-st-tab-btn:hover,
.hrp-st-tab-btn:focus,
.hrp-st-tab-btn:focus-visible { background: #f3f4f6 !important; outline: none !important; border: none !important; box-shadow: none !important; color: #454e66 !important; text-decoration: none !important; }
.hrp-st-tab-btn--active:hover,
.hrp-st-tab-btn--active:focus,
.hrp-st-tab-btn--active:focus-visible { background: #343c52 !important; color: #ffffff !important; }
.hrp-st-item-btn:hover,
.hrp-st-item-btn:focus,
.hrp-st-item-btn:focus-visible { background: transparent !important; outline: none !important; border: none !important; box-shadow: none !important; color: inherit !important; text-decoration: none !important; }
/* Keep icon/chevron green when item is open — overrides any hover interference */
.hrp-st-item--open .hrp-st-icon,
.hrp-st-item--open .hrp-st-item-btn:hover .hrp-st-icon,
.hrp-st-item--open:hover .hrp-st-icon { background: #00D9A5 !important; }
.hrp-st-item--open .hrp-st-chevron,
.hrp-st-item--open .hrp-st-item-btn:hover .hrp-st-chevron,
.hrp-st-item--open:hover .hrp-st-chevron { background: #00D9A5 !important; }

/* ═══════════════════════════════════════════
   HRP HERO — row spacing when photo present
   ═══════════════════════════════════════════ */

.fl-row:has(.hrp-hero-photo-side) .fl-row-content-wrap {
    padding-bottom: 0 !important;
}

/* ═══════════════════════════════════════════
   GRAVITY FORMS — global styles
   ═══════════════════════════════════════════ */

/* Field grid */
.gform_wrapper .gform_fields {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    margin: 0 !important;
}

.gform_wrapper .gfield {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
}

.gform_wrapper .gfield.gf-half {
    flex: 1 1 calc(50% - 10px) !important;
    max-width: calc(50% - 10px) !important;
}

@media (max-width: 600px) {
    .gform_wrapper .gfield.gf-half {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }
}

/* Labels */
.gform_wrapper .gfield_label {
    font-family: Inter, sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #343c52 !important;
    margin-bottom: 6px !important;
    display: block;
}

.gform_wrapper .gfield_required { color: #ef4444; margin-left: 2px; }

/* Inputs, selects, textarea */
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="number"],
.gform_wrapper input[type="url"],
.gform_wrapper select,
.gform_wrapper textarea {
    width: 100% !important;
    padding: 10px 16px !important;
    border-radius: 12px !important;
    border: 1px solid #e5e7eb !important;
    background: #fff !important;
    color: #343c52 !important;
    font-family: Inter, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color 0.15s, box-shadow 0.15s !important;
    box-sizing: border-box !important;
    -webkit-appearance: none;
    appearance: none;
    height: auto !important;
}

.gform_wrapper input::placeholder,
.gform_wrapper textarea::placeholder { color: #9ca3af; }

.gform_wrapper input[type="text"]:focus,
.gform_wrapper input[type="email"]:focus,
.gform_wrapper input[type="tel"]:focus,
.gform_wrapper input[type="number"]:focus,
.gform_wrapper input[type="url"]:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus {
    border-color: #00D9A5 !important;
    box-shadow: 0 0 0 3px rgba(0, 217, 165, 0.2) !important;
}

/* Select — custom chevron */
.gform_wrapper select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    padding-right: 36px !important;
    cursor: pointer;
}

/* Textarea */
.gform_wrapper textarea {
    resize: none !important;
    min-height: 120px !important;
    height: 120px !important;
}

/* Section divider */
.gform_wrapper .gfield--type-section {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    border: none !important;
    padding: 8px 0 0 !important;
    margin-top: 4px;
}

.gform_wrapper .gsection_title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #343c52 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    margin: 0 0 16px !important;
    padding: 0 0 8px !important;
    border: none !important;
    border-bottom: 1px solid #f3f4f6 !important;
}

/* File upload zone */
.gform_wrapper .ginput_container_fileupload {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 2px dashed #e5e7eb;
    border-radius: 12px;
    background: #f5f3f0;
    padding: 32px 16px 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    overflow: hidden;
}

.gform_wrapper .ginput_container_fileupload:hover {
    border-color: #00D9A5;
    background: rgba(0, 217, 165, 0.04);
}

/* "Click to upload" text inside zone — order 2 */
.gform_wrapper .ginput_container_fileupload::after {
    content: 'Click to upload';
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #3a4357;
    order: 2;
}

/* Form 8 (Send Your CV) — specific upload label */
#gform_wrapper_8 .ginput_container_fileupload::after {
    content: 'Click to upload your CV';
}

/* Upload icon — order 1 */
.gform_wrapper .ginput_container_fileupload::before {
    order: 1;
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%2300D9A5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpolyline points='17 8 12 3 7 8'/%3E%3Cline x1='12' y1='3' x2='12' y2='15'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* File input covers entire zone, invisible — makes whole area clickable */
.gform_wrapper .ginput_container_fileupload input[type="file"] {
    position: absolute !important;
    top: 0 !important; left: 0 !important;
    width: 100% !important; height: 100% !important;
    opacity: 0 !important;
    cursor: pointer !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    margin: 0 !important;
    z-index: 1;
}

/* Hide description inside file upload fields (but not the rules span) */
.gform_wrapper .gfield--type-fileupload .gfield_description:not(.gform_fileupload_rules) {
    display: none !important;
}

/* File type / size rules — replace GF auto-generated text with custom — order 3 */
.gform_wrapper .gform_fileupload_rules {
    font-size: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    order: 3;
}

.gform_wrapper .gform_fileupload_rules::before {
    content: 'PDF, DOC or DOCX — max 2 MB';
    font-family: Inter, sans-serif;
    font-size: 12px;
    color: #9ca3af;
}

/* Selected filename shown below input (GF default behaviour) */
.gform_wrapper .ginput_preview_fileupload {
    font-family: Inter, sans-serif;
    font-size: 12px;
    color: #454e66;
    margin-top: 8px;
}

/* Consent */
.gform_wrapper .gfield--type-consent .ginput_container_consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.gform_wrapper .gfield--type-consent input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #00D9A5;
    cursor: pointer;
    border-radius: 4px !important;
    padding: 0 !important;
}

.gform_wrapper .gfield_consent_label {
    font-family: Inter, sans-serif !important;
    font-size: 13px !important;
    color: #454e66 !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;
}

.gform_wrapper .gfield_consent_label a { color: #00b88c; text-decoration: underline; }

/* Submit button */
.gform_wrapper .gform_footer { margin-top: 8px; padding: 0 !important; }

.gform_wrapper .gform_button {
    width: 100% !important;
    background: #00D9A5 !important;
    color: #343c52 !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    padding: 14px 24px !important;
    border-radius: 12px !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.15s !important;
    line-height: 1 !important;
    box-shadow: none !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    height: auto !important;
}

.gform_wrapper .gform_button:hover { background: #1affc3 !important; }

/* Validation */
.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error select,
.gform_wrapper .gfield_error textarea {
    border-color: #ef4444 !important;
}

.gform_wrapper .validation_message {
    font-family: Inter, sans-serif;
    font-size: 12px;
    color: #ef4444;
    margin-top: 4px;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

.gform_wrapper .gform_validation_errors {
    border-radius: 8px;
    font-family: Inter, sans-serif;
    font-size: 13px;
}

/* Hide "* indicates required fields" on all forms */
.gform_wrapper .gform_required_legend { display: none !important; }

/* ══════════════════════════════════════════════════════════════════════
   Case Study Single — PHP template (hrp-cs-single-*)
   Reuses csd26-* classes for layout/content; these are standalone wrappers
   ══════════════════════════════════════════════════════════════════════ */

/* Hero — standalone div replicating fl-row.csd26-hero */
.hrp-cs-single-hero {
    background-color: #454e66;
    position: relative;
    overflow: hidden;
    padding: 128px 0 64px;
}
@media (min-width: 1024px) { .hrp-cs-single-hero { padding: 160px 0 80px; } }
.hrp-cs-single-hero::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0,217,165,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(26,255,195,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(69,78,102,0.8) 0%, transparent 60%);
}
.hrp-cs-single-hero > * { position: relative; z-index: 1; }

/* Content wrapper — standalone div replicating fl-row.csd26-content */
.hrp-cs-single-content { background: #fff; padding: 72px 0; }
@media (min-width: 1024px) { .hrp-cs-single-content { padding: 96px 0; } }

/* WYSIWYG content from ACF repeater */
.hrp-cs-wysiwyg p { font-family: Inter, sans-serif; font-size: 15px; color: #454e66; line-height: 1.75; margin: 0 0 14px; }
.hrp-cs-wysiwyg p:last-child { margin-bottom: 0; }
.hrp-cs-wysiwyg ul { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.hrp-cs-wysiwyg ul li { display: flex; align-items: flex-start; gap: 10px; font-family: Inter, sans-serif; font-size: 15px; color: #454e66; line-height: 1.65; }
.hrp-cs-wysiwyg ul li::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: #00D9A5; flex-shrink: 0; margin-top: 7px; }
.hrp-cs-wysiwyg ol { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-direction: column; gap: 12px; counter-reset: hrp-ol; }
.hrp-cs-wysiwyg ol li { display: flex; align-items: flex-start; gap: 12px; font-family: Inter, sans-serif; font-size: 15px; color: #454e66; line-height: 1.65; counter-increment: hrp-ol; }
.hrp-cs-wysiwyg ol li::before { content: counter(hrp-ol); display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: rgba(0,217,165,0.2); color: #007a5a; font-family: "Plus Jakarta Sans", sans-serif; font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.hrp-cs-wysiwyg strong { font-weight: 600; }
.hrp-cs-wysiwyg h3 { font-family: "Plus Jakarta Sans", sans-serif; font-size: 16px; font-weight: 700; color: #343c52; margin: 20px 0 10px; }

/* Back link */
.hrp-cs-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 48px; font-family: "Plus Jakarta Sans", sans-serif; font-size: 14px; font-weight: 600; color: #454e66; text-decoration: none; transition: color 0.18s, gap 0.18s; }
.hrp-cs-back svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.18s; }
.hrp-cs-back:hover { color: #00a37c; text-decoration: none; gap: 12px; }
.hrp-cs-back:hover svg { transform: translateX(-3px); }

.hrp-footer-tagline { letter-spacing: 0.2px; }

/* ══════════════════════════════════════════════════════════════════════
   Blog Single
   ══════════════════════════════════════════════════════════════════════ */

/* Date meta in hero */
.csd26-blog-meta { font-family: Inter, sans-serif; font-size: 14px; color: rgba(255,255,255,0.55); margin: 12px 0 0; }

/* Blog content row */
.fl-row.hrp-blog-content-row > .fl-row-content-wrap { background: #ffffff; padding: 56px 0 80px !important; }
@media (min-width: 1024px) { .fl-row.hrp-blog-content-row > .fl-row-content-wrap { padding: 80px 0 112px !important; } }
.fl-row.hrp-blog-content-row .fl-module-content { margin: 0 !important; }

/* Featured image */
.fl-row.hrp-blog-content-row .fl-module-photo { margin-bottom: 40px !important; }
.fl-row.hrp-blog-content-row .fl-module-photo .fl-photo-img { width: 100%; height: auto; border-radius: 16px; display: block; }
.fl-row.hrp-blog-content-row .fl-module-photo .fl-photo-content { margin: 0; }

/* Gutenberg content typography */
.fl-row.hrp-blog-content-row .fl-module-rich-text p { font-family: Inter, sans-serif; font-size: 16px; color: #454e66; line-height: 1.8; margin: 0 0 20px; }
.fl-row.hrp-blog-content-row .fl-module-rich-text p:last-child { margin-bottom: 0; }
.fl-row.hrp-blog-content-row .fl-module-rich-text h2 { font-family: "Plus Jakarta Sans", sans-serif; font-size: 26px; font-weight: 700; color: #343c52; margin: 48px 0 16px; line-height: 1.25; }
.fl-row.hrp-blog-content-row .fl-module-rich-text h3 { font-family: "Plus Jakarta Sans", sans-serif; font-size: 20px; font-weight: 700; color: #343c52; margin: 36px 0 12px; line-height: 1.3; }
.fl-row.hrp-blog-content-row .fl-module-rich-text h4 { font-family: "Plus Jakarta Sans", sans-serif; font-size: 17px; font-weight: 700; color: #343c52; margin: 28px 0 10px; }
.fl-row.hrp-blog-content-row .fl-module-rich-text ul { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.fl-row.hrp-blog-content-row .fl-module-rich-text ul li { display: flex; align-items: flex-start; gap: 10px; font-family: Inter, sans-serif; font-size: 16px; color: #454e66; line-height: 1.65; }
.fl-row.hrp-blog-content-row .fl-module-rich-text ul li::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: #00D9A5; flex-shrink: 0; margin-top: 8px; }
.fl-row.hrp-blog-content-row .fl-module-rich-text ol { list-style: decimal; margin: 0 0 20px; padding: 0 0 0 24px; display: flex; flex-direction: column; gap: 8px; }
.fl-row.hrp-blog-content-row .fl-module-rich-text ol li { font-family: Inter, sans-serif; font-size: 16px; color: #454e66; line-height: 1.65; padding-left: 4px; }
.fl-row.hrp-blog-content-row .fl-module-rich-text strong { font-weight: 600; }
.fl-row.hrp-blog-content-row .fl-module-rich-text a { color: #00a37c; text-decoration: underline; transition: color 0.2s; }
.fl-row.hrp-blog-content-row .fl-module-rich-text a:hover { color: #00D9A5; }
.fl-row.hrp-blog-content-row .fl-module-rich-text blockquote { border-left: 4px solid #00D9A5; padding: 16px 20px; margin: 32px 0; background: #f5f3f0; border-radius: 0 8px 8px 0; }
.fl-row.hrp-blog-content-row .fl-module-rich-text blockquote p { font-size: 17px; font-style: italic; color: #343c52; margin: 0; }
.fl-row.hrp-blog-content-row .fl-module-rich-text figure.wp-block-image { margin: 32px 0; }
.fl-row.hrp-blog-content-row .fl-module-rich-text figure.wp-block-image img { width: 100%; height: auto; border-radius: 12px; display: block; }
.fl-row.hrp-blog-content-row .fl-module-rich-text figcaption { font-family: Inter, sans-serif; font-size: 13px; color: #9ca3af; text-align: center; margin-top: 8px; }

/* ══════════════════════════════════════════════════════════════════════
   Specialism Single
   ══════════════════════════════════════════════════════════════════════ */

/* Content row */
.fl-row.hrp-spec-content-row > .fl-row-content-wrap { background: #f5f3f0; padding: 56px 0 80px !important; }
@media (min-width: 1024px) { .fl-row.hrp-spec-content-row > .fl-row-content-wrap { padding: 80px 0 112px !important; } }
@media (max-width: 1280px) { .fl-row.hrp-spec-content-row .fl-row-content.fl-row-fixed-width.fl-node-content { padding-left: 20px !important; padding-right: 20px !important; } }
.fl-row.hrp-spec-content-row .fl-module-content { margin: 0 !important; }

/* Main content typography */
.fl-row.hrp-spec-content-row .fl-module-html p { font-family: Inter, sans-serif; font-size: 16px; color: #454e66; line-height: 1.8; margin: 0 0 18px; }
.fl-row.hrp-spec-content-row .fl-module-html p:last-child { margin-bottom: 0; }
.fl-row.hrp-spec-content-row .fl-module-html h2 { font-family: "Plus Jakarta Sans", sans-serif; font-size: 24px; font-weight: 700; color: #343c52; margin: 40px 0 14px; line-height: 1.25; }
.fl-row.hrp-spec-content-row .fl-module-html h3 { font-family: "Plus Jakarta Sans", sans-serif; font-size: 19px; font-weight: 700; color: #343c52; margin: 32px 0 10px; }
.fl-row.hrp-spec-content-row .fl-module-html ul { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.fl-row.hrp-spec-content-row .fl-module-html ul li { display: flex; align-items: center; gap: 12px; font-family: Inter, sans-serif; font-size: 16px; color: #454e66; line-height: 1.65; }
.fl-row.hrp-spec-content-row .fl-module-html ul li::before { content: ''; display: block; width: 16px; height: 16px; flex-shrink: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300D9A5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E") center/contain no-repeat; }
.fl-row.hrp-spec-content-row .fl-module-html ol { list-style: decimal; margin: 0 0 18px; padding: 0 0 0 24px; display: flex; flex-direction: column; gap: 8px; }
.fl-row.hrp-spec-content-row .fl-module-html ol li { font-family: Inter, sans-serif; font-size: 16px; color: #454e66; line-height: 1.65; padding-left: 4px; }
.fl-row.hrp-spec-content-row .fl-module-html strong { font-weight: 600; }
.fl-row.hrp-spec-content-row .fl-module-html em { font-style: italic; }
.fl-row.hrp-spec-content-row .fl-module-html a { color: #00a37c; text-decoration: underline; transition: color 0.2s; }
.fl-row.hrp-spec-content-row .fl-module-html a:hover { color: #00D9A5; }
.fl-row.hrp-spec-content-row .fl-module-html h4 { font-family: "Plus Jakarta Sans", sans-serif; font-size: 17px; font-weight: 700; color: #343c52; margin: 28px 0 10px; }
.fl-row.hrp-spec-content-row .fl-module-html blockquote { border-left: 4px solid #00D9A5; padding: 16px 20px; margin: 32px 0; background: #ffffff; border-radius: 0 8px 8px 0; }
.fl-row.hrp-spec-content-row .fl-module-html blockquote p { font-size: 17px; font-style: italic; color: #343c52; margin: 0 !important; }
.fl-row.hrp-spec-content-row .fl-module-html blockquote cite { display: block; font-family: Inter, sans-serif; font-size: 13px; color: #9ca3af; margin-top: 8px; font-style: normal; }
.fl-row.hrp-spec-content-row .fl-module-html figure.wp-block-image { margin: 32px 0; }
.fl-row.hrp-spec-content-row .fl-module-html figure.wp-block-image img { width: 100%; height: auto; border-radius: 12px; display: block; }
.fl-row.hrp-spec-content-row .fl-module-html figcaption { font-family: Inter, sans-serif; font-size: 13px; color: #9ca3af; text-align: center; margin-top: 8px; }
.fl-row.hrp-spec-content-row .fl-module-html hr { border: none; border-top: 1px solid #e5e7eb; margin: 40px 0; }

/* Column widths — match Next.js grid-cols-[1fr_300px] */
@media (min-width: 1024px) {
    .fl-row.hrp-spec-content-row .fl-col:last-child  { width: 300px !important; }
    .fl-row.hrp-spec-content-row .fl-col:first-child { width: calc(100% - 300px) !important; }
}

/* Sidebar sticky */
.fl-row.hrp-spec-content-row .fl-col:last-child { position: sticky; top: 96px; align-self: start; }
.fl-row.hrp-spec-content-row .fl-col:last-child .fl-col-content { padding: 0 !important; border: none !important; background: transparent !important; }

/* Sidebar cards — white card design */
.hrp-spec-sidebar-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    margin-bottom: 16px;
}
.hrp-spec-sidebar-heading,
.fl-row.hrp-spec-content-row .fl-module-html .hrp-spec-sidebar-heading {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #343c52;
    margin: 0 0 16px !important;
    padding-bottom: 12px;
    border-bottom: 1px solid #f3f4f6;
}

/* Contact links */
.hrp-spec-contact-links { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.hrp-spec-contact-link,
.fl-row.hrp-spec-content-row .fl-module-html .hrp-spec-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: #454e66 !important;
    text-decoration: none !important;
    transition: color 0.2s;
}
.hrp-spec-contact-link:hover,
.fl-row.hrp-spec-content-row .fl-module-html .hrp-spec-contact-link:hover { color: #00D9A5 !important; text-decoration: none !important; }
.hrp-spec-contact-icon { width: 16px; height: 16px; color: #00D9A5; flex-shrink: 0; }

/* Sidebar buttons */
.hrp-spec-sidebar-btns { display: flex; flex-direction: column; gap: 8px; }
.hrp-spec-btn,
.fl-row.hrp-spec-content-row .fl-module-html .hrp-spec-btn {
    display: block;
    width: 100%;
    text-align: center;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 20px;
    border-radius: 10px;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.hrp-spec-btn--primary,
.fl-row.hrp-spec-content-row .fl-module-html .hrp-spec-btn--primary { background: #00D9A5; color: #343c52 !important; border: 2px solid #00D9A5; }
.hrp-spec-btn--primary:hover,
.fl-row.hrp-spec-content-row .fl-module-html .hrp-spec-btn--primary:hover { background: #1affc3; border-color: #1affc3; color: #343c52 !important; text-decoration: none !important; }
.hrp-spec-btn--secondary,
.fl-row.hrp-spec-content-row .fl-module-html .hrp-spec-btn--secondary { background: transparent; color: #454e66 !important; border: 1.5px solid #d1d5db; }
.hrp-spec-btn--secondary:hover,
.fl-row.hrp-spec-content-row .fl-module-html .hrp-spec-btn--secondary:hover { border-color: #00D9A5; color: #00a37c !important; text-decoration: none !important; }

/* Browse sectors list */
.hrp-spec-sectors-list { display: flex; flex-direction: column; gap: 6px; }
.hrp-spec-sector-link,
.fl-row.hrp-spec-content-row .fl-module-html .hrp-spec-sector-link {
    display: block;
    width: 100%;
    text-align: center;
    background: #3a4357;
    color: #ffffff !important;
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: background 0.2s;
}
.hrp-spec-sector-link:hover,
.fl-row.hrp-spec-content-row .fl-module-html .hrp-spec-sector-link:hover { background: #00D9A5; color: #ffffff !important; text-decoration: none !important; }

/* ═══════════════════════════════════════════
   JOB SINGLE
   ═══════════════════════════════════════════ */

/* ── Content row bg + 2-col layout ── */
.fl-row.hrp-job-content-row > .fl-row-content-wrap {
    background: #f5f3f0;
    padding: 56px 0 80px !important;
}
@media (min-width: 1024px) {
    .fl-row.hrp-job-content-row .fl-col:last-child  { width: 300px !important; }
    .fl-row.hrp-job-content-row .fl-col:first-child { width: calc(100% - 300px) !important; }
}
.fl-row.hrp-job-content-row .fl-col:last-child { position: sticky; top: 96px; align-self: start; }
.fl-row.hrp-job-content-row .fl-col:last-child .fl-col-content { padding: 0 !important; border: none !important; background: transparent !important; }

/* ── Hero meta row ── */
.hrp-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
}
.hrp-job-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
}
.hrp-job-meta-item--response {
    background: rgba(0,217,165,0.15);
    color: #00D9A5;
    border: 1px solid rgba(0,217,165,0.3);
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 13px;
}
.hrp-job-meta-icon { width: 15px; height: 15px; flex-shrink: 0; }
.hrp-job-meta-item:nth-child(2) .hrp-job-meta-icon { height: 23px; }
.hrp-job-meta-pound { font-size: 14px; font-weight: 700; font-family: Inter, sans-serif; line-height: 15px; flex-shrink: 0; display: inline-block; vertical-align: middle; }
.hrp-job-meta-item .hrp-job-meta-icon.hrp-job-meta-pound { height: 20px; }

/* ── Job content boxes ── */
.hrp-job-boxes { display: flex; flex-direction: column; gap: 24px; }
.hrp-job-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.hrp-job-box-label {
    display: inline-block;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #00D9A5;
    margin-bottom: 8px;
}
.hrp-job-box-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #343c52;
    margin: 0 0 16px !important;
    padding: 0 !important;
    border: none !important;
}
.hrp-job-box-content {
    font-family: Inter, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
}
.hrp-job-box-content p { margin: 0 0 12px; }
.hrp-job-box-content p:last-child { margin-bottom: 0; }
.hrp-job-box-content ul,
.hrp-job-box-content ol { margin: 0 0 12px; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 6px; }
.hrp-job-box-content ul li,
.hrp-job-box-content ol li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 15px;
    color: #374151;
}
.hrp-job-box-content ul li::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300D9A5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E") center/contain no-repeat;
}
.hrp-job-box-content ol { counter-reset: job-ol; }
.hrp-job-box-content ol li { counter-increment: job-ol; }
.hrp-job-box-content ol li::before {
    content: counter(job-ol);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: #f0fdf4;
    color: #15803d;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    margin-top: 1px;
}
.hrp-job-box-content strong { font-weight: 700; color: #343c52; }
.hrp-job-box-content h3 { font-family: "Plus Jakarta Sans", sans-serif; font-size: 16px; font-weight: 700; color: #343c52; margin: 20px 0 8px; }
.hrp-job-box-content h4 { font-family: "Plus Jakarta Sans", sans-serif; font-size: 14px; font-weight: 700; color: #343c52; margin: 16px 0 6px; }

/* ── Sidebar — inherit spec card styles, override link colors for job row ── */
.fl-row.hrp-job-content-row .fl-module-html .hrp-spec-sidebar-heading { margin: 0 0 16px !important; }
.fl-row.hrp-job-content-row .fl-module-html a.hrp-spec-contact-link { color: #454e66 !important; text-decoration: none !important; }
.fl-row.hrp-job-content-row .fl-module-html a.hrp-spec-contact-link:hover { color: #00D9A5 !important; }

/* ── Apply card subtitle ── */
.hrp-job-apply-sub { font-family: Inter, sans-serif; font-size: 14px; color: #6b7280; margin: -8px 0 16px; }

/* ── "Prefer to call?" dark box ── */
.hrp-job-call-card {
    background: #343c52;
    border-radius: 12px;
    padding: 24px 28px;
    margin-top: 16px;
}
.hrp-job-call-heading {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px !important;
}
.hrp-job-call-consultant {
    font-family: Inter, sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin: 0 0 16px;
}
.hrp-job-call-links { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.hrp-job-call-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.15s;
}
.hrp-job-call-link svg { width: 15px; height: 15px; flex-shrink: 0; color: #00D9A5; }
.hrp-job-call-link:hover { color: #00D9A5; }
.hrp-job-call-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
    width: 100%;
    transition: color 0.15s;
}
.hrp-job-call-back svg { width: 14px; height: 14px; }
.hrp-job-call-back:hover { color: rgba(255,255,255,0.85); }

/* ── Job single content layout (mirrors csd26-inner/layout pattern) ── */
.hrp-job-inner { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 1024px) { .hrp-job-inner { padding: 0; } }
.hrp-job-layout { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 1024px) { .hrp-job-layout { grid-template-columns: 1fr 320px; gap: 48px; } }
.hrp-job-main { display: flex; flex-direction: column; gap: 24px; }
.hrp-job-panel { display: flex; flex-direction: column; gap: 0; }
@media (min-width: 1024px) { .hrp-job-panel { position: sticky; top: 96px; align-self: start; } }
.hrp-job-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.15s;
    margin-top: 8px;
}
.hrp-job-back svg { width: 14px; height: 14px; }
.hrp-job-back:hover { color: #343c52; text-decoration: none; }

/* ── Process steps ── */
.hrp-job-process-steps { display: flex; flex-direction: column; gap: 20px; margin-top: 4px; }
.hrp-job-process-step { display: flex; gap: 16px; align-items: flex-start; }
.hrp-job-process-num {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: rgba(52,60,82,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #00D9A5;
    flex-shrink: 0;
}
.hrp-job-process-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #343c52;
    margin: 0 0 4px;
}
.hrp-job-process-body {
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ── Why Candidates Choose Us ── */
.hrp-job-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 4px;
}
@media (min-width: 600px) { .hrp-job-why-grid { grid-template-columns: 1fr 1fr; } }
.hrp-job-why-item { display: flex; align-items: flex-start; gap: 10px; }
.hrp-job-why-icon { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: #00D9A5; }
.hrp-job-why-text { font-family: Inter, sans-serif; font-size: 14px; color: #374151; line-height: 1.5; }

/* ── FAQ ── */
.hrp-job-faq-list { display: flex; flex-direction: column; margin-top: 4px; }
.hrp-job-faq-item { border-bottom: 1px solid #f3f4f6; padding: 18px 0; }
.hrp-job-faq-item:first-child { padding-top: 0; }
.hrp-job-faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.hrp-job-faq-q {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #343c52;
    margin: 0 0 8px;
}
.hrp-job-faq-a {
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

/* ── Related jobs ── */
.hrp-job-related { padding: 8px 0 0; }
.hrp-job-related-heading {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #343c52;
    margin: 0 0 16px !important;
    padding: 0 !important;
    border: none !important;
}
.hrp-job-related-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .hrp-job-related-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .hrp-job-related-grid { grid-template-columns: 1fr 1fr 1fr; } }
.hrp-job-related-card {
    display: block;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px 20px;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.hrp-job-related-card:hover { border-color: rgba(0,217,165,0.5); box-shadow: 0 4px 12px rgba(0,0,0,0.08); text-decoration: none; }
.hrp-job-related-badge {
    display: inline-block;
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 9999px;
    background: rgba(0,217,165,0.10);
    color: #00836b;
    border: 1px solid rgba(0,217,165,0.25);
    margin-bottom: 10px;
}
.hrp-job-related-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #343c52;
    line-height: 1.4;
    margin: 0 0 10px;
    transition: color 0.15s;
}
.hrp-job-related-card:hover .hrp-job-related-title { color: #00836b; }
.hrp-job-related-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: Inter, sans-serif;
    font-size: 12px;
    color: #9ca3af;
    margin-top: 4px;
}
.hrp-job-related-icon { width: 12px; height: 12px; flex-shrink: 0; }
.hrp-job-related-icon:has(path[d^="M17 5H9.5"]) { display: none; }

/* ── CTA footer row ── */
.fl-row.hrp-job-cta-row > .fl-row-content-wrap {
    padding: 80px 0 !important;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
}
.fl-row.hrp-job-cta-row > .fl-row-content-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,163,124,0.95), rgba(0,163,124,0.88), rgba(52,60,82,0.95));
}
.fl-row.hrp-job-cta-row > .fl-row-content-wrap > .fl-row-content { position: relative; z-index: 1; }
.hrp-job-cta { text-align: center; max-width: 640px; margin: 0 auto; padding: 0 20px; }
.hrp-job-cta .hrp-job-cta-label {
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin: 0 0 12px;
}
.hrp-job-cta .hrp-job-cta-h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin: 0 0 12px !important;
    padding: 0 !important;
    border: none !important;
}
.hrp-job-cta .hrp-job-cta-lead {
    font-family: Inter, sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
    margin: 0 0 28px;
}
.hrp-job-cta .hrp-job-cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.hrp-job-cta .hrp-job-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #00836b;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s;
}
.hrp-job-cta .hrp-job-cta-btn-primary svg { width: 16px; height: 16px; }
.hrp-job-cta .hrp-job-cta-btn-primary:hover { background: rgba(255,255,255,0.92); color: #00836b; text-decoration: none; }
.hrp-job-cta .hrp-job-cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.28);
    color: #ffffff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s;
}
.hrp-job-cta .hrp-job-cta-btn-ghost svg { width: 16px; height: 16px; flex-shrink: 0; }
.hrp-job-cta .hrp-job-cta-btn-ghost:hover { background: rgba(255,255,255,0.22); color: #ffffff; text-decoration: none; }

/* ═══════════════════════════════════════════════════════════════════
   JOB SINGLE — jbs26 row classes & missing components
   ═══════════════════════════════════════════════════════════════════ */

/* ── Content row: cream background (matches /jobs/ page feel) ── */
.fl-row.jbs26-content > .fl-row-content-wrap {
    background: #f5f3f0 !important;
    padding: 72px 0 !important;
    padding-bottom: 0 !important;
}
@media (min-width: 1024px) {
    .fl-row.jbs26-content > .fl-row-content-wrap { padding: 88px 0 !important; padding-bottom: 0 !important; }
}

/* ── Prevent page-wide horizontal scrollbar from the CTA's 100vw full-bleed breakout
   (moved here from .fl-row.jbs26-content, which was clipping the breakout itself) ── */
html { overflow-x: hidden; }

/* ── Box label: add mint bar left of label text ── */
.hrp-job-box-label {
    display: flex !important;
    align-items: center;
    gap: 8px;
}
.hrp-job-box-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 4px;
    background: linear-gradient(to right, #1affc3, #00D9A5);
    border-radius: 2px;
    flex-shrink: 0;
}

/* ── Breadcrumb back link with arrow ── */
.hrp-job-bc-back { display: inline-flex !important; align-items: center; gap: 6px; }
.hrp-job-bc-back-icon { width: 13px; height: 13px; flex-shrink: 0; }

/* ── Call card links: pill card style (bg-white/10 + border) ── */
.hrp-job-call-link {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    padding: 11px 16px;
}
.hrp-job-call-link:hover { background: rgba(255,255,255,0.18); }

.harper-why-card-col--featured > .fl-col-content { border: 1px solid #00d9a6 !important; }

/* ── Featured testimonial card: full design match ── */
.featured-card {
    padding: 2rem !important;
    border: 1px solid rgba(69,78,102,0.3) !important;
}
/* Quote icon: 30px, left-aligned with card padding, 16px gap below before stars */
.featured-card .quote-icon {
    width: 30px !important;
    height: 30px !important;
    top: 20px !important;
    left: 20px !important;
    color: rgba(0,217,165,0.3) !important;
}
/* Stars: 16px each, 16px below icon (icon ends 30px from inner, stars at 46px) */
.featured-card .stars {
    position: absolute !important;
    top: 46px !important;
    left: 0 !important;
    margin-left: 0 !important;
    display: flex !important;
    gap: 4px !important;
}
.featured-card .stars svg { width: 16px !important; height: 16px !important; }
/* Blockquote: 16px below stars (stars end 62px from inner, text at 78px) */
.featured-card blockquote {
    font-size: 18px !important;
    padding-top: 78px !important;
    padding-left: 0 !important;
    margin-bottom: 24px !important;
    color: #e5e5e5 !important;
}
/* Author: border separator + correct sizing */
.featured-author {
    padding-left: 0 !important;
    padding-top: 1rem !important;
    border-top: 1px solid rgba(69,78,102,0.2) !important;
    gap: 12px !important;
}
.featured-author img { width: 40px !important; height: 40px !important; border-color: rgba(0,217,165,0.4) !important; }
.featured-author .author-name { font-size: 14px !important; }
.featured-author .author-role { font-size: 12px !important; color: #a3a3a3 !important; }
@media (max-width: 767px) {
    .featured-card blockquote { font-size: 16px !important; }
}

/* ── Smaller testimonial cards: add quote icon via ::before, fix colours ── */
.testimonial-card {
    border: 1px solid rgba(69,78,102,0.3) !important;
    border-radius: 24px !important;
}
.testimonial-card::before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    margin-bottom: 16px;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300D9A5' stroke-opacity='0.3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 21c3 0 7-1 7-8V5c0-1.25-.756-2.017-2-2H4c-1.25 0-2 .75-2 1.972V11c0 1.25.75 2 2 2 1 0 1 0 1 1v1c0 1-1 2-2 2s-1 .008-1 1.031V20c0 1 0 1 1 1z'/><path d='M15 21c3 0 7-1 7-8V5c0-1.25-.757-2.017-2-2h-4c-1.25 0-2 .75-2 1.972V11c0 1.25.75 2 2 2h.75c0 2.25.25 4-2.75 4v3c0 1 0 1 1 1z'/></svg>");
}
.testimonial-card .stars-small svg { fill: #00D9A5 !important; color: #00D9A5 !important; }

/* ── Contact form — styled confirmation ── */
.hrp-contact-confirmation {
    background: rgba(0,217,165,0.1);
    border: 1px solid rgba(0,217,165,0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}
.hrp-contact-confirmation__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0,217,165,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #00D9A5;
}
.hrp-contact-confirmation__heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #343c52;
    margin-bottom: 8px;
}
.hrp-contact-confirmation__body {
    color: #3a4357;
    font-size: 15px;
    margin-bottom: 0;
}
.hrp-contact-confirmation__reset {
    display: inline-block;
    margin-top: 20px;
    font-size: 14px;
    color: #00D9A5;
    font-weight: 500;
    text-decoration: underline;
}
.hrp-contact-confirmation__reset:hover { color: #1affc3; }

/* ── sectors-grid: pills now link to specialism pages ── */
.sector-pill { cursor: pointer !important; font-size: 17px !important; padding: 14px 28px !important; text-decoration: none !important; }
.sector-pill:hover {
    background: #1affc3 !important;
    border-color: #1affc3 !important;
    color: #343c52 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
    transform: translateY(-2px) !important;
}
.sector-pill:hover svg { stroke: #343c52 !important; }

@media (max-width: 1023px) {
    .hero-content-column { padding: 95px 0; }
}

/* ── Homepage hero search ────────────────────────────────────────────────── */
.hero-search-wrap {
    margin-bottom: 32px;
}
.hero-search-form {
    max-width: 576px;
    margin: 0 auto;
}
.hero-search-inner {
    position: relative;
}
.hero-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #9ca3af;
    pointer-events: none;
}
.hero-search-input {
    width: 100%;
    padding: 16px 40px 16px 48px;
    border-radius: 24px;
    background: #ffffff;
    color: #343c52;
    font-size: 16px;
    font-family: Inter, sans-serif;
    border: none;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    outline: none;
    transition: box-shadow 0.2s ease;
    box-sizing: border-box;
    -webkit-appearance: none;
}
.hero-search-input::placeholder { color: #9ca3af; }
.hero-search-input:focus {
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1), 0 0 0 2px rgba(0,217,165,0.4);
}

/* ── HRP Client Logos ── */
.hrp-client-logos-wrapper .fl-row-content-wrap { padding: 0 !important; }
.hrp-client-logos { padding: 90px 0; }

/* ── Contact page: swap form and map columns ── */
@media (min-width: 1024px) {
    .hrp-cd-info-col { order: -1; }
}

/* ── Employer modals (Submit a Vacancy / Request a Callback) ── */
.hrp-emp-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 99999;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px;
    overflow-y: auto;
}
.hrp-emp-overlay.hrp-modal-open { display: flex; }
.hrp-emp-modal {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    max-width: 580px;
    width: 100%;
    position: relative;
    margin: auto;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
@media (max-width: 600px) {
    .hrp-emp-modal { padding: 28px 20px; border-radius: 16px; }
}
.hrp-emp-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f3f4f6;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    color: #6b7280;
    transition: background 0.2s, color 0.2s;
}
.hrp-emp-modal-close:hover { background: #e5e7eb; color: #343c52; }
.hrp-emp-modal-h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #343c52;
    margin: 0 0 6px;
    padding-right: 40px;
}
.hrp-emp-modal-sub {
    font-family: Inter, sans-serif;
    font-size: 15px;
    color: #6b7280;
    margin: 0 0 24px;
    line-height: 1.5;
}
.hrp-emp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
}
@media (max-width: 480px) { .hrp-emp-row { grid-template-columns: 1fr; } }
.hrp-emp-field { margin-bottom: 16px; }
.hrp-emp-field label {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #343c52;
    margin-bottom: 5px;
}
.hrp-emp-field label span { color: #ef4444; }
.hrp-emp-field input,
.hrp-emp-field select,
.hrp-emp-field textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 14px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: #343c52;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.hrp-emp-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 36px;
}
.hrp-emp-field input:focus,
.hrp-emp-field select:focus,
.hrp-emp-field textarea:focus {
    border-color: #00D9A5;
    box-shadow: 0 0 0 3px rgba(0,217,165,0.12);
}
.hrp-emp-field input.hrp-emp-invalid,
.hrp-emp-field select.hrp-emp-invalid,
.hrp-emp-field textarea.hrp-emp-invalid { border-color: #ef4444; }
.hrp-emp-field textarea { min-height: 100px; resize: none; }
.hrp-emp-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #00D9A5;
    color: #343c52;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
}
.hrp-emp-submit svg { width: 16px; height: 16px; }
.hrp-emp-submit:hover:not(:disabled) { background: #1affc3; }
.hrp-emp-submit:disabled { opacity: 0.65; cursor: not-allowed; }
.hrp-emp-success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 10px;
    padding: 12px 16px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: #166534;
    margin-bottom: 16px;
}
.hrp-emp-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    border-radius: 10px;
    padding: 12px 16px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: #991b1b;
    margin-bottom: 16px;
}

/* ── 404 Page ──────────────────────────────────────────────────────────── */
.hrp-404-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #343c52;
    background-image:
        radial-gradient(ellipse at 20% 60%, rgba(0,217,165,0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 20%, rgba(0,217,165,0.07) 0%, transparent 50%);
    padding: 80px 20px;
    text-align: center;
}
.hrp-404-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 540px;
}
.hrp-404-code {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(80px, 14vw, 140px);
    font-weight: 800;
    color: #00D9A5;
    line-height: 1;
    letter-spacing: -4px;
}
.hrp-404-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}
.hrp-404-sub {
    font-family: Inter, sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.70);
    line-height: 1.65;
    margin: 0;
    max-width: 400px;
}
.hrp-404-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    background: #00D9A5;
    color: #343c52 !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
    margin-top: 8px;
    transition: background 0.15s, color 0.15s;
}
.hrp-404-btn:hover { background: #1affc3; color: #343c52 !important; }
.hrp-404-btn-icon { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Specialism grid — image banner variant ── */
.hrp-sg-card--img { padding: 0; }
.hrp-sg-banner {
    position: relative;
    height: 76px !important;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    flex-shrink: 0;
}
.hrp-sg-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hrp-sg-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 138, 107, 0.68);
}
.hrp-sg-card--img .hrp-sg-icon-wrap {
    position: absolute;
    top: 16px;
    left: 16px;
    margin-bottom: 0;
    background: #ffffff;
    z-index: 1;
}
.hrp-sg-card--img .hrp-sg-icon-wrap svg { stroke: #00D9A5; }
.hrp-sg-card--img:hover .hrp-sg-icon-wrap { background: #00D9A5; }
.hrp-sg-card--img:hover .hrp-sg-icon-wrap svg { stroke: #ffffff; }
.hrp-sg-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}


/* ═══════════════════════════════════════════
   GRAVITY FORMS — phone field sub-labels
   ═══════════════════════════════════════════ */

/* GF 2.9's phone field renders a country selector plus a number input, each with
   its own sub-label ("Country" / "Phone Number"). Both repeat the field label
   already shown above, so hide them visually.

   Hidden accessibly rather than with display:none: the number input takes its
   accessible name from its sub-label, so dropping it from the a11y tree would
   leave a screen reader announcing an unnamed text box. The country button
   carries its own aria-label, so it is fine either way.

   Scoped to phone fields, so no other field's sub-labels are affected. Applies
   to every form with a phone field (job application form 8, and form 9). */
.gform_wrapper .gfield--type-phone .gform-field-label--type-sub {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
