/* ============================================
   CORPORATE SHARED COMPONENTS
   Base component classes using token variables.
   Use .corp-* prefix — these classes are ADDITIVE.
   They do NOT replace existing .wwh-* / .fp-* / .cu-* classes.
   Pages migrate to .corp-* in Phase 2.
   ============================================ */

/* ── Container ── */
.corp-container {
    width: 100%;
    max-width: var(--corp-container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--corp-container-px);
    padding-right: var(--corp-container-px);
}

/* ── Hero ── */
.corp-hero {
    background: var(--corp-primary);
    position: relative;
    z-index: 1;
    padding-top: var(--corp-hero-pt);
    padding-bottom: var(--corp-hero-pb);
    min-height: var(--corp-hero-min-height);
    overflow: visible;
    overflow-x: clip;
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    width: 100%;
}

.corp-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 16px;
    background: linear-gradient(90deg, #0080c0, #1c223e);
    z-index: 1;
}


.corp-hero-content {
    position: relative;
    z-index: 5;
    /* Align with corp-container left edge dynamically:
       corp-container = max-width 1400px centred + 15px padding.
       On wide screens: (100vw - 1400px)/2 + 15px; on narrow: 15px. */
    padding-left: max(var(--corp-container-px), calc((100vw - var(--corp-container-max-width)) / 2 + var(--corp-container-px)));
    padding-right: 2rem;
}

.corp-hero-title {
    font-size: var(--corp-font-hero-title);
    font-weight: 900;
    color: var(--corp-white);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.corp-hero-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: #92D6E3;
    line-height: 1;
    display: block;
    margin-top: 0.25rem;
    margin-bottom: 1.25rem;
}

.corp-hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    max-width: 700px;
    font-weight: 500;
}

.corp-hero-cta {
    margin-top: 1.75rem;
}

.corp-hero-geo-bg {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.corp-hero-geo-bg img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: cover;
    object-position: top right;
}

.corp-hero-image-col {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-right: 0;
    padding-left: 0;
    overflow: hidden;
    margin-bottom: -30px;
}

.corp-hero-image-wrap {
    overflow: visible;
}

.corp-hero-img {
    height: 500px;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
    object-position: bottom right;
}

/* ── Compact Hero (inner pages — no image, reduced height) ── */
.corp-hero--compact {
    min-height: 0;
    padding-top: 190px;
    padding-bottom: 90px;
    margin-bottom: 0;
}

.corp-hero--compact .corp-hero-title {
    font-size: 2.75rem;
    margin-bottom: 0.75rem;
}

/* Breadcrumb trail inside hero */
.corp-hero-breadcrumb {
    font-family: 'Circe', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.01em;
    margin-top: 4px;
}

.corp-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.corp-hero-breadcrumb a:hover,
.corp-hero-breadcrumb a:focus {
    color: var(--corp-white);
}

.corp-hero-breadcrumb .corp-breadcrumb-sep {
    display: inline-block;
    margin: 0 10px;
    font-size: 0.55rem;
    vertical-align: middle;
    opacity: 0.7;
}

/* ── Category Strip ── */
.corp-categories-strip {
    position: absolute;
    bottom: -50px;
    right: 0;
    left: auto;
    width: 60%;
    z-index: 20;
    background-color: var(--corp-primary-dark);
    border-radius: 20px 0 0 20px;
    padding: 20px;
    box-shadow: var(--corp-shadow-strip);
}

.corp-categories-inner {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
}

.corp-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    flex: 1 1 0%;
    min-width: 0;
    padding: 0.15rem 0.85rem;
    position: relative;
    transition: opacity 0.3s ease, transform 0.3s var(--corp-ease-spring);
    cursor: pointer;
    text-decoration: none;
    color: var(--corp-slate);
}

.corp-category-item:hover {
    text-decoration: none;
    color: var(--corp-slate);
    opacity: 1;
    transform: translateY(-4px);
}

.corp-category-item::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: #AFCE67;
    border-radius: 2px;
    transition: transform 0.3s var(--corp-ease-spring);
}

.corp-category-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.corp-category-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: transform 0.3s var(--corp-ease-spring);
}

.corp-category-item:hover .corp-category-icon {
    transform: scale(1.15) rotate(5deg);
}

.corp-category-icon i {
    font-size: 3.6rem;
    color: var(--corp-slate);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
}

.corp-category-icon svg {
    width: 64px;
    height: 64px;
    max-width: 100%;
    color: var(--corp-slate);
}

.corp-category-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--corp-slate);
    line-height: 1.3;
    /* white-space: nowrap; */
    letter-spacing: 0.2px;
}

/* ── Section Block ── */
.corp-section {
    padding: var(--corp-section-py) 0;
    position: relative;
    scroll-margin-top: 80px;
}

.corp-section--white {
    background-color: var(--corp-white);
}

.corp-section--light {
    background-color: var(--corp-light-bg);
}

.corp-section-image-col {
    margin-bottom: 2rem;
}

.corp-section-image-wrap {
    border-radius: var(--corp-radius-image);
    overflow: hidden;
    box-shadow: var(--corp-shadow-image);
}

.corp-section-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 360px;
    max-height: 480px;
    transition: transform 0.5s var(--corp-ease-spring);
}

/* Non-card sections: content column bounded by image height */
.corp-section > .corp-container > .row {
    align-items: stretch;
}

.corp-section > .corp-container > .row > .corp-section-image-col {
    margin-bottom: 0;
}

.corp-section > .corp-container > .row > .corp-section-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.corp-section-image-wrap:hover .corp-section-img {
    transform: scale(1.03);
}

.corp-section-content {
    padding-left: 2rem;
}

.corp-section .order-lg-1 .corp-section-content,
.corp-section-content:first-child {
    padding-right: 2rem;
}

#inheritance-planning .corp-section-title,
#income-protection .corp-section-title,
#business-protection .corp-section-title,
#retirement-preparation .corp-section-title {
    font-size: var(--corp-font-section-title);
    max-width: 20ch;
}

.corp-section-title {
    font-size: var(--corp-font-section-title);
    font-weight: 900;
    color: var(--corp-primary);
    margin-bottom: 0.2rem;
    line-height: 1.15;
}

.corp-section-subtitle {
    font-size: var(--corp-font-subtitle);
    font-weight: 800;
    color: var(--corp-primary);
    margin-top: 0;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.corp-section-description {
    font-size: 1.1875rem;
    color: #010c47;
    line-height: 1.55;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* ── Checklist ── */
.corp-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 0.4rem;
}

.corp-checklist li {
    display: flex;
    align-items: flex-start;
    font-size: 0.9375rem;
    color: #010c47;
    margin-bottom: 0.15rem;
    line-height: 1.4;
    font-weight: 600;
}

.corp-checklist li strong {
    color: var(--corp-primary);
    font-weight: 700;
    margin-right: 4px;
}

.corp-check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
    transition: transform 0.3s var(--corp-ease-spring);
}

.corp-check-icon img {
    width: 20px;
    height: 20px;
}

.corp-checklist li:hover .corp-check-icon {
    transform: scale(1.1);
}

/* ── Warning Box ── */
.corp-warning-box {
    padding: 0.5rem 0;
    border-radius: 0;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.88rem;
    line-height: var(--corp-line-height-body);
    font-weight: 700;
    background: transparent;
    color: var(--corp-primary);
    border: none;
    text-align: left;
}

/* ── Page-Level Warning (between sections and footer) ── */
.corp-section:has(+ .corp-page-warning) {
    padding-bottom: 1rem;
}

.corp-page-warning {
    padding: 0.5rem 0 1rem;
    background: transparent;
}

/* ── Tip Box ── */
.corp-tip-box {
    display: flex;
    align-items: flex-start;
    padding: 0.6rem 0.875rem;
    border-radius: var(--corp-radius-tip);
    margin-top: 0;
    gap: 6px;
    font-size: 0.78rem;
    line-height: 1.5;
}

.corp-tip-box--dark {
    background: var(--corp-primary);
    color: var(--corp-white);
}

.corp-tip-box--green {
    background: var(--corp-green-dark);
    color: var(--corp-white);
}

.corp-tip-box--teal {
    background: var(--corp-teal);
    color: var(--corp-white);
}

.corp-tip-icon {
    font-size: 0.95rem;
    flex-shrink: 0;
    line-height: 1.4;
    margin-top: 6px;
}

.corp-tip-title {
    font-size: 0.88rem;
    font-weight: 700;
    display: inline;
    margin-right: 2px;
}

.corp-tip-text {
    font-size: 0.88rem;
    line-height: var(--corp-line-height-body);
    font-weight: 700;
    margin-bottom: 5px;
    margin-top: 5px;
}

/* ── Section Geo Background ── */
.corp-section-geo-bg {
    position: absolute;
    top: 0;
    left: -15%;
    width: 75%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.corp-section-geo-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top left;
    opacity: 0.15;
}

/* ── Geometric Strip ── */
.corp-geometric-strip {
    position: absolute;
    top: -18%;
    right: -14%;
    height: 55%;
    width: auto;
    z-index: 1;
    pointer-events: none;
    object-fit: contain;
    object-position: right top;
    transform: scaleX(-1);
    opacity: 0.3;
}

.corp-geometric-strip--entrepreneur {
    position: absolute;
    top: -30%;
    right: -11%;
    height: 160%;
    width: auto;
    z-index: 1;
    pointer-events: none;
    object-fit: contain;
    object-position: right top;
    opacity: 0.3;
}

/* ── Card Container ── */
.corp-card-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: var(--corp-container-px);
    padding-right: var(--corp-container-px);
}

/* ── Card ── */
.corp-card {
    background: #e3e9ea;
    border-radius: 24px;
    padding: 2rem 2.5rem;
    position: relative;
    overflow: visible;
}

.corp-card .corp-section-image-wrap {
    border-radius: var(--corp-radius-image);
    overflow: hidden;
    box-shadow: var(--corp-shadow-image);
}

.corp-card .corp-section-img {
    min-height: 360px;
    max-height: 480px;
}

.corp-card .corp-section-image-col {
    margin-bottom: 0;
}

.corp-card .corp-section-content {
    padding-left: 0;
    padding-right: 2rem;
}

.corp-card .corp-section-title {
    margin-bottom: 0.6rem;
    color: #00565c;
}

.corp-card .corp-section-description {
    margin-bottom: 1.25rem;
    color: #010c47;
    font-weight: 600;
}

.corp-card .corp-section-subtitle {
    margin-bottom: 0.75rem;
    color: #00565c;
}

.corp-card .corp-checklist {
    margin-bottom: 1rem;
}

.corp-card .corp-checklist li {
    margin-bottom: 0.4rem;
    color: #010c47;
    font-weight: 600;
}

.corp-card .corp-checklist li strong {
    color: #010c47 !important;
}

.corp-card .corp-warning-box {
    margin-top: 0.25rem;
    padding: 0;
}

.corp-card .corp-tip-box {
    margin-top: 0.25rem;
    padding: 1rem 1.25rem;
    background: #00565c !important;
    color: #fff;
}

.corp-card .corp-check-icon img {
    width: 20px;
    height: 20px;
}

/* ── Card Entrepreneur Variant ── */
.corp-card--entrepreneur {
    position: relative;
    overflow: visible;
}

.corp-card--entrepreneur .corp-section-content {
    padding-left: 0;
    padding-right: 2rem;
}

.corp-card--entrepreneur .corp-section-title {
    margin-bottom: 0.6rem;
}

.corp-card--entrepreneur .corp-section-description {
    margin-bottom: 1.25rem;
}

.corp-card--entrepreneur .corp-section-subtitle {
    margin-bottom: 0.75rem;
}

.corp-card--entrepreneur .corp-checklist {
    margin-bottom: 1rem;
}

.corp-card--entrepreneur .corp-checklist li {
    margin-bottom: 0.4rem;
}

.corp-card--entrepreneur .corp-warning-box {
    margin-top: 0.25rem;
    padding: 0;
}

.corp-card--entrepreneur .corp-tip-box {
    margin-top: 0.25rem;
    padding: 1rem 1.25rem;
}

.corp-card--entrepreneur .corp-section-image-wrap {
    border-radius: var(--corp-radius-image);
    overflow: hidden;
    box-shadow: var(--corp-shadow-image);
}

.corp-card--entrepreneur .corp-section-img {
    min-height: 360px;
    max-height: 480px;
}

.corp-card--entrepreneur .corp-section-image-col {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Large screens (≤1199px) */
@media (max-width: 1199px) {
    .corp-hero-title {
        font-size: 2.25rem;
    }

    .corp-hero-subtitle {
        font-size: 2rem;
    }

    .corp-hero-img {
        height: 480px;
    }
}

/* Large desktops */
@media (min-width: 1200px) {
    .corp-section-content {
        padding-left: 3rem;
    }

    .corp-section .order-lg-1.corp-section-content {
        padding-right: 3rem;
    }
}

/* Tablets (≤991px) */
@media (max-width: 991px) {
    .corp-hero-geo-bg,
    .corp-section-geo-bg {
        display: none;
    }

    .corp-hero {
        padding-top: var(--corp-hero-pt);
        padding-bottom: var(--corp-hero-pb);
        min-height: var(--corp-hero-min-height);
    }

    .corp-hero--compact {
        padding-top: 120px;
        padding-bottom: 35px;
    }

    .corp-hero--compact .corp-hero-title {
        font-size: 2.25rem;
    }

    .corp-hero-title {
        font-size: var(--corp-font-hero-title);
    }

    .corp-hero-subtitle {
        font-size: 2rem;
    }

    .corp-hero-content {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .corp-categories-strip {
        width: 56%;
        right: 2%;
        left: auto;
        border-radius: 16px;
        padding: 20px;
        bottom: -45px;
    }

    .corp-category-icon {
        width: 52px;
        height: 52px;
    }

    .corp-category-icon i {
        font-size: 2.5rem;
    }

    .corp-category-icon svg {
        width: 40px;
        height: 40px;
        color: var(--corp-slate);
    }

    .corp-category-label {
        font-size: 0.8rem;
    }

    .corp-section-content {
        padding-left: 0;
        padding-right: 0;
    }

    .corp-section .order-lg-1.corp-section-content {
        /* padding-left: 0; */
        /* padding-right: 0; */
    }

    .corp-section-title {
        font-size: var(--corp-font-section-title);
    }

    #inheritance-planning .corp-section-title {
        margin-top: 0;
    }

    .corp-section-subtitle {
        font-size: var(--corp-font-subtitle);
    }

    .corp-section-img {
        min-height: 280px;
        max-height: 380px;
    }

    .corp-section-image-col {
        margin-bottom: 1.5rem;
    }

    .corp-geometric-strip,
    .corp-geometric-strip--entrepreneur {
        display: none;
    }

    .corp-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .corp-card .corp-section-content {
        padding-right: 0;
    }

    .corp-card .corp-section-image-col {
        margin-bottom: 0.75rem;
    }

    .corp-card-container {
        padding-left: var(--corp-container-px);
        padding-right: var(--corp-container-px);
    }

    .corp-card--entrepreneur {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .corp-card--entrepreneur .corp-section-content {
        padding-right: 0;
    }

    .corp-card--entrepreneur .corp-section-image-col {
        margin-bottom: 0.75rem;
    }

    .corp-card--entrepreneur .corp-section-title {
        margin-bottom: 0.6rem;
    }

    .corp-card--entrepreneur .corp-section-description {
        margin-bottom: 1rem;
    }

    .corp-card--entrepreneur .corp-section-subtitle {
        margin-bottom: 0.75rem;
    }

    .corp-card--entrepreneur .corp-checklist {
        margin-bottom: 1rem;
    }

    .corp-card--entrepreneur .corp-checklist li {
        margin-bottom: 0.4rem;
    }

    .corp-card--entrepreneur .corp-warning-box {
        margin-top: 0.25rem;
    }

    .corp-card--entrepreneur .corp-tip-box {
        margin-top: 0.25rem;
    }
}

/* Mobile (≤767px) */
@media (max-width: 767px) {
    .corp-hero {
        padding-top: var(--corp-hero-pt);
        padding-bottom: var(--corp-hero-pb);
        min-height: var(--corp-hero-min-height);
    }

    .corp-hero-title {
        font-size: var(--corp-font-hero-title);
        margin-bottom: 1rem;
    }

    .corp-hero--compact {
        padding-top: 100px;
        padding-bottom: 30px;
    }

    .corp-hero--compact .corp-hero-title {
        font-size: 1.85rem;
    }

    .corp-hero-subtitle {
        font-size: 1.75rem;
    }

    .corp-hero-description {
        font-size: 1.25rem;
        line-height: 1.6;
    }

    .corp-hero-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .corp-categories-strip {
        position: absolute;
        bottom: -55px;
        right: 2%;
        left: auto;
        width: 92%;
        border-radius: 14px;
        padding: 1rem 0.75rem;
    }

    .corp-categories-inner {
        flex-wrap: nowrap;
        gap: 0;
    }

    .corp-category-item {
        flex: 1;
        padding: 0rem 0.2rem;
        min-width: 0;
    }

    .corp-category-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 0.5rem;
    }

    .corp-category-icon i {
        font-size: 2.75rem;
    }

    .corp-category-icon svg {
        width: 40px;
        height: 40px;
        color: var(--corp-slate);
    }

    .corp-category-label {
        font-size: 0.75rem;
        padding: 0px;
    }

    .corp-section-title {
        font-size: var(--corp-font-section-title);
    }

    .corp-section-subtitle {
        font-size: 1.1rem;
    }

    .corp-section-description {
        font-size: 1rem;
    }

    .corp-checklist li {
        font-size: var(--corp-font-body);
    }

    .corp-check-icon {
        width: 20px;
        height: 20px;
        min-width: 20px;
        margin-right: 10px;
    }

    .corp-section-img {
        min-height: 240px;
        max-height: 320px;
    }

    .corp-section-content {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 20px;
    }

    .corp-warning-box {
        padding: 0.85rem 1rem;
        font-size: var(--corp-font-body);
    }

    .corp-tip-box {
        padding: 1rem 1.25rem;
    }

    .corp-tip-text {
        font-size: var(--corp-font-body);
    }

    .corp-card {
        padding: 1rem 0.75rem;
        border-radius: 16px;
    }

    .corp-card .corp-section-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .corp-card .corp-section-image-col {
        margin-bottom: 0.5rem;
    }

    .corp-card-container {
        padding-left: var(--corp-container-px);
        padding-right: var(--corp-container-px);
    }

    .corp-card--entrepreneur {
        padding: 1rem 0.75rem;
        border-radius: 16px;
    }

    .corp-card--entrepreneur .corp-section-content,
    .corp-card--entrepreneur .order-lg-1.corp-section-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .corp-card--entrepreneur .corp-section-image-col {
        margin-bottom: 0.5rem;
    }

    .corp-card--entrepreneur .corp-section-title {
        margin-bottom: 0.5rem;
    }

    .corp-card--entrepreneur .corp-section-description {
        margin-bottom: 0.75rem;
    }

    .corp-card--entrepreneur .corp-checklist {
        margin-bottom: 0.75rem;
    }

    .corp-card--entrepreneur .corp-checklist li {
        margin-bottom: 0.35rem;
    }

    .corp-card--entrepreneur .corp-warning-box {
        margin-top: 0.15rem;
        padding: 0.5rem 1rem;
    }

    .corp-card--entrepreneur .corp-tip-box {
        margin-top: 0.15rem;
        padding: 0.85rem 1rem;
    }
}

/* Small phones (≤575px) */
@media (max-width: 575px) {
    .fenero-hero .corp-hero-content {
        padding-left: 35px;
        padding-right: 35px;
    }
}

/* Small phones (≤480px) */
@media (max-width: 480px) {
    .corp-hero {
        padding-top: 130px;
        padding-bottom: 60px;
    }

    .corp-hero--compact {
        padding-top: 90px;
        padding-bottom: 25px;
    }

    .corp-hero--compact .corp-hero-title {
        font-size: 1.6rem;
    }

    .corp-hero-title {
        font-size: 1.75rem;
    }

    .corp-hero-subtitle {
        font-size: 1.5rem;
    }

    .corp-hero-description {
        font-size: 0.9rem;
    }

    .corp-categories-strip {
        width: 94%;
        right: 3%;
        border-radius: 12px;
        bottom: -70px;
        padding: 0.75rem 0.5rem;
    }

    .corp-category-icon {
        width: 50px;
        height: 50px;
    }

    .corp-category-icon i {
        font-size: 2.5rem;
    }

    .corp-category-icon svg {
        width: 40px;
        height: 40px;
        color: var(--corp-slate);
    }

    .corp-category-label {
        font-size: 0.65rem;
    }

    .corp-section-title {
        font-size: 1.5rem;
    }

    .corp-section-subtitle {
        font-size: 1rem;
    }
}

/* Extra small (≤375px) */
@media (max-width: 375px) {
    .corp-hero-title {
        font-size: 1.5rem;
    }

    .corp-hero-subtitle {
        font-size: 1.35rem;
    }

    .corp-categories-strip {
        padding: 0.75rem 0.35rem;
    }

    .corp-category-item {
        flex: 1;
        min-width: 0;
    }

    .corp-category-icon {
        width: 40px;
        height: 40px;
    }

    .corp-category-icon i {
        font-size: 2rem;
    }

    .corp-category-icon svg {
        width: 40px;
        height: 40px;
        color: var(--corp-slate);
    }

    .corp-category-label {
        font-size: 0.62rem;
        white-space: nowrap;
    }

    .corp-section-title {
        font-size: 1.4rem;
    }
}

/* ── Self-Employed section overrides ── */
#self-employed .corp-section-title {
    font-size: var(--corp-font-section-title) !important;
    margin-bottom: 0.6rem;
    color: #00565c !important;
}

#self-employed .corp-section-description {
    font-size: 1.0625rem !important;
    margin-bottom: 1rem;
    line-height: 1.3;
}

#self-employed .corp-section-subtitle {
    font-size: 1.3rem !important;
    margin-bottom: 0.7rem;
}

#self-employed .corp-section-img {
    min-height: 360px;
    max-height: 480px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

#self-employed .corp-checklist {
    margin-bottom: 1rem;
}

#self-employed .corp-checklist li {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

/* ── Entrepreneur section overrides (mirrors self-employed) ── */
#entrepreneur .corp-section-title {
    font-size: var(--corp-font-section-title) !important;
    margin-bottom: 0.6rem;
    color: #00565c !important;
}

#entrepreneur .corp-section-description {
    font-size: 1.0625rem !important;
    margin-bottom: 1rem;
    line-height: 1.3;
}

#entrepreneur .corp-section-subtitle {
    font-size: 1.3rem !important;
    margin-bottom: 0.7rem;
}

#entrepreneur .corp-section-img {
    min-height: 360px;
    max-height: 480px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

#entrepreneur .corp-checklist {
    margin-bottom: 1rem;
}

#entrepreneur .corp-checklist li {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

/* ── Contractor section overrides ── */
#contractor .corp-section-title {
    font-size: var(--corp-font-section-title);
    margin-bottom: 0.2rem;
}

#contractor .corp-section-description {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

#contractor .corp-section-subtitle {
    margin-bottom: 0.25rem;
}

#contractor .corp-checklist {
    margin-bottom: 0.4rem;
}

#contractor .corp-checklist li {
    margin-bottom: 0.15rem;
}


#contractor .corp-section-geo-bg {
    top: -14%;
}

/* ── Income Protection section overrides ── */
#income-protection .corp-section-geo-bg {
    top: -14%;
}

/* ── Business Protection section overrides ── */
#business-protection .corp-section-geo-bg {
    top: -8%;
}

/* ============================================
   MERGED PAGE-SPECIFIC STYLES (Phase 1)
   Consolidated from: contact-us.css,
   tax-accounting.css, retirement.css,
   financial-planning.css
   ============================================ */

/* ── Gradient Strip ── */
.corp-gradient-strip {
    height: 8px;
    background: linear-gradient(90deg, #0d2240 0%, #1b3e71 15%, #2a6cb8 35%, #3b9dd4 55%, #5ec4c8 75%, #AFCE67 100%);
    width: 100%;
    position: relative;
    z-index: 10;
}

/* ── Contact Section ── */
.corp-contact-section {
    background: #e3e9ea;
    padding: 70px 0 60px;
}

.corp-info-col {
    padding-top: 20px;
    padding-right: 3rem;
}

.corp-info-block {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 38px;
}

.corp-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a7fb5;
}

.corp-info-icon svg {
    width: 28px;
    height: 28px;
}

.corp-info-text {
    flex: 1;
}

.corp-info-heading {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1b3e71;
    margin-bottom: 4px;
    line-height: 1.3;
}

.corp-info-detail {
    font-size: 1.125rem;
    font-weight: 400;
    color: #3a3a3a;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ── Contact Form Card ── */
.corp-form-col {
    padding-left: 2rem;
}

.corp-form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 36px 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
}

.corp-form-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1b3e71;
    margin-bottom: 6px;
    display: block;
}

.corp-form-required {
    color: #1b3e71;
    font-size: 0.75rem;
    vertical-align: super;
    margin-left: 1px;
}

.corp-form-input {
    width: 100%;
    height: 44px;
    border: 1.5px solid #d0d5dd;
    border-radius: 8px;
    padding: 0 14px;
    font-size: 0.9rem;
    font-family: 'Circe', sans-serif;
    color: #1b3e71;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.corp-form-input:focus {
    border-color: #4a7fb5;
    box-shadow: 0 0 0 3px rgba(74, 127, 181, 0.12);
}

.corp-form-input::placeholder {
    color: #a0a8b4;
}

.corp-form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%231b3e71' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.corp-form-select:invalid,
.corp-form-select option[value=""][disabled] {
    color: #a0a8b4;
}

.corp-form-select option {
    color: #1b3e71;
}

.corp-form-textarea {
    height: auto;
    min-height: 130px;
    padding: 12px 14px;
    resize: vertical;
}

.corp-form-submit-btn {
    display: inline-block;
    background: var(--corp-cta-green);
    color: #010c47;
    border: none;
    border-radius: 12px;
    padding: 12px 48px;
    font-size: 0.9375rem;
    font-weight: 800;
    font-family: 'Circe', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.corp-form-submit-btn:hover {
    background: var(--corp-cta-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(175, 206, 103, 0.35);
}

.corp-form-submit-btn:active {
    transform: translateY(0);
}

.corp-form-submit-btn:focus {
    outline: 2px solid #4a7fb5;
    outline-offset: 2px;
}

.corp-form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    color: #4a5568;
}

.corp-form-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #1a3c5e;
    cursor: pointer;
}

.corp-form-input--error,
.corp-form-input--error:focus {
    border-color: #d64545;
    box-shadow: 0 0 0 3px rgba(214, 69, 69, 0.12);
}

.corp-form-consent--error .corp-form-checkbox {
    outline: 2px solid #d64545;
    outline-offset: 2px;
    border-radius: 3px;
}

.corp-form-error-message {
    display: none;
    color: #d64545;
    font-size: 0.78rem;
    line-height: 1.35;
    margin-top: 6px;
}

.corp-form-error-message.is-visible {
    display: block;
}

.corp-form-footnote {
    font-size: 0.78rem;
    color: #4a5568;
    margin: 4px 0 18px;
    font-style: italic;
}

/* ── CTA Section ── */
.corp-cta-section {
    background: #e3e9ea;
    padding: 0 0 50px;
}

.corp-cta-card {
    background: #c0d7d7;
    color: #00565c;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
}

.corp-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 36px 48px;
    gap: 40px;
}

.corp-cta-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #00565c;
    line-height: 1.25;
    margin: 0;
    max-width: 420px;
}

.corp-cta-btn {
    display: inline-block;
    background: var(--corp-teal);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 14px 43px;
    font-size: 0.9375rem;
    font-weight: 800;
    font-family: 'Circe', sans-serif;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.corp-cta-btn:hover {
    background: #004249;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 86, 92, 0.35);
}

.corp-cta-btn:active {
    transform: translateY(0);
}

.corp-cta-btn:focus {
    outline: 2px solid var(--corp-teal);
    outline-offset: 2px;
}

/* ── Map Section ── */
.corp-map-section {
    background: #e3e9ea;
    padding: 0 0 60px;
}

.corp-map-wrapper {
    width: 100%;
    line-height: 0;
    min-height: 400px;
    background: #e8edf2;
    border-radius: 20px;
    overflow: hidden;
}

.corp-map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
    min-height: 400px;
}

/* ── Visit Strip ── */
.corp-visit-strip {
    padding: 40px 0;
}

.corp-visit-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    background: #00565c;
    padding: 16px 32px;
    border-radius: 8px;
    transition: background 0.2s ease, gap 0.2s ease;
}

.corp-visit-link:hover {
    background: #004449;
    color: #ffffff;
    gap: 14px;
    text-decoration: none;
}

.corp-visit-arrow {
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.corp-visit-link:hover .corp-visit-arrow {
    transform: translateX(4px);
}

.corp-section-slim {
    padding: 5px 20px 40px 20px;
    position: relative;
}

.corp-visit-strip--centered {
    text-align: center;
    padding: 0;
}

/* ── Options Label & List ── */
.corp-options-label {
    font-weight: 600;
    color: #1a2e35;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.corp-options-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.7;
}

/* ── Section ID Overrides ── */

/* Tax Returns */
#tax-returns {
    padding-top: 100px;
    overflow: hidden;
}

#tax-returns > .corp-container {
    position: relative;
    z-index: 1;
}

/* Payroll */
#payroll {
    overflow-x: clip;
    overflow-y: visible;
}

/* Company Setup */
#company-setup {
    position: relative;
}

#company-setup > .corp-container {
    position: relative;
    z-index: 1;
}

#company-setup::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -25%;
    width: 80%;
    height: 120%;
    background-image: url('../img/web/herosectionbg%20copy.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-90deg);
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}

/* Management Accounts */
#management-accounts {
    overflow: clip;
}

/* Why Fenero */
#why-fenero .corp-section-geo-bg {
    top: -14%;
}

/* Pensions */
#pensions {
    padding-top: 40px;
}

#pensions .corp-section-geo-bg {
    top: -14%;
}

#pensions > .corp-container {
    position: relative;
    z-index: 1;
}

/* PRSA */
#prsa {
    overflow-x: clip;
    overflow-y: visible;
}

/* Master Trust */
#master-trust {
    position: relative;
}

#master-trust > .corp-container {
    position: relative;
    z-index: 1;
}

#master-trust::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -25%;
    width: 80%;
    height: 120%;
    background-image: url('../img/web/herosectionbg%20copy.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-90deg);
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}

/* Consolidation */
#consolidation .corp-geometric-strip {
    right: -20%;
}

/* Retirement Preparation */
#retirement-preparation {
    padding-top: 40px;
}

#retirement-preparation .corp-section-geo-bg {
    top: -8%;
}

#retirement-preparation > .corp-container {
    position: relative;
    z-index: 1;
}

/* Mortgage Ready */
#mortgage-ready.corp-section {
    padding-top: 56px;
    padding-bottom: 36px;
}

#mortgage-ready .corp-section-geo-bg {
    top: -13%;
}

#mortgage-ready .corp-section-title {
    font-size: var(--corp-font-section-title);
}

#mortgage-ready .corp-tip-box {
    margin-top: 0;
    padding: 0.6rem 0.875rem;
}

/* ============================================
   MERGED RESPONSIVE STYLES
   ============================================ */

/* Tablets (≤991px) */
@media (max-width: 991px) {
    .corp-info-col {
        padding-right: 15px;
        margin-bottom: 40px;
    }

    .corp-form-col {
        padding-left: 15px;
    }

    .corp-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 30px 28px;
        gap: 24px;
    }

    .corp-cta-title {
        max-width: none;
        font-size: 1.4rem;
    }

    #tax-returns {
        padding-top: 80px;
    }

    #company-setup::before {
        display: none;
    }

    #pensions {
        padding-top: 40px;
    }

    #master-trust::before {
        display: none;
    }
}

/* Mobile (≤767px) */
@media (max-width: 767px) {
    .corp-contact-section {
        padding: 40px 0 30px;
    }

    .corp-info-block {
        margin-bottom: 28px;
    }

    .corp-info-icon {
        width: 40px;
        height: 40px;
    }

    .corp-info-icon svg {
        width: 24px;
        height: 24px;
    }

    .corp-info-heading {
        font-size: 1rem;
    }

    .corp-info-detail {
        font-size: 0.9rem;
    }

    .corp-form-card {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .corp-cta-section {
        padding: 0 0 30px;
    }

    .corp-cta-inner {
        padding: 24px 20px;
        gap: 20px;
    }

    .corp-cta-title {
        font-size: 1.2rem;
    }

    .corp-cta-btn {
        padding: 12px 28px;
    }

    .corp-map-wrapper iframe {
        height: 300px;
    }

    #tax-returns {
        padding-top: 90px;
        padding-bottom: 40px;
    }

    #management-accounts {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    #pensions {
        padding-top: 90px;
        padding-bottom: 40px;
    }

    #consolidation {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    #self-employed .corp-section-title {
        font-size: 1.5rem !important;
    }

    #entrepreneur .corp-section-title {
        font-size: 1.5rem !important;
    }
}

/* Small mobile (≤480px) */
@media (max-width: 480px) {
    .corp-form-card {
        padding: 20px 16px;
    }

    .corp-form-submit-btn {
        width: 100%;
        padding: 12px 20px;
    }
}

/* ══════════════════════════════════════════════
   Corp Sections Wrapper
   ══════════════════════════════════════════════ */
.corp-sections-wrapper {
    position: relative;
    background: #ffffff;
}

.corp-sections-wrapper::before {
    display: none;
}

.corp-spanning-bg {
    display: none;
}

.corp-sections-wrapper .corp-intro-section {
    position: relative;
    background-color: transparent !important;
    overflow: visible !important;
    z-index: 7;
}

.corp-sections-wrapper .corp-intro-geometric {
    position: relative;
    z-index: 8;
}

.corp-sections-wrapper .corp-intro-section .corp-container,
.corp-sections-wrapper .corp-intro-image-col,
.corp-sections-wrapper .corp-intro-content {
    position: relative;
    z-index: 10;
}

.corp-sections-wrapper .corp-image-grid {
    position: relative;
    background-color: transparent !important;
    z-index: 7;
}

.corp-sections-wrapper .corp-image-grid .corp-container {
    position: relative;
    z-index: 10;
}

/* ══════════════════════════════════════════════
   Corp Intro Section (Who We Are pattern)
   ══════════════════════════════════════════════ */
.corp-intro-section {
    position: relative;
    background-color: #ffffff;
    padding: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: -60px;
    margin-bottom: 0;
    overflow: visible;
}

.corp-intro-geometric {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.corp-intro-shape-green {
    position: absolute;
    top: 0;
    left: 0;
    width: 40vw;
    aspect-ratio: 2613 / 4276;
    background-image: url('../img/web/Pattern.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left top;
    transform: rotate(0deg);
}

.corp-intro-shape-navy {
    display: none;
}

.corp-intro-accent-line {
    display: none;
}

.corp-intro-image-col {
    position: relative;
    z-index: 5;
    padding: 0;
}

.corp-intro-image-wrap {
    position: relative;
    margin-bottom: -80px;
    margin-left: 2rem;
}

.corp-intro-img {
    width: 100%;
    height: auto;
    max-height: 580px;
    object-fit: cover;
    object-position: top center;
}


.corp-intro-content {
    position: relative;
    z-index: 5;
    padding: 3.5rem 2rem 3rem 3rem;
}

.corp-intro-title {
    font-size: var(--corp-font-section-title);
    font-weight: 800;
    color: var(--corp-primary);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.corp-intro-content p {
    font-size: 1.05rem;
    color: var(--corp-primary);
    font-weight: 600 !important;
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* ══════════════════════════════════════════════
   Corp Image Grid (Who We Help pattern)
   ══════════════════════════════════════════════ */
.corp-image-grid {
    padding: 0 0 4rem 0;
    margin-top: -50px;
    position: relative;
    z-index: 6;
    background-color: #ffffff;
}

.corp-image-grid .row {
    display: flex;
    flex-wrap: wrap;
}

.corp-image-grid .col-lg-3 {
    display: flex;
    flex-direction: column;
}

.corp-image-grid-wrapper {
    background-color: #c3d9d9;
    border-radius: 20px;
    padding: 3rem 2.5rem 2rem;
}

.corp-image-grid-title {
    font-size: var(--corp-font-section-title);
    font-weight: 800;
    color: var(--corp-teal);
    margin-bottom: 1.5rem;
}

.corp-image-card-link {
    text-decoration: none !important;
    display: block;
}

.corp-image-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 310px;
    background-color: #c5d5da;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.corp-image-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(134, 165, 103, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 12px;
    pointer-events: none;
}

.corp-image-card:hover::before {
    opacity: 0;
}

.corp-image-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 86, 92, 0.15);
}

.corp-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.corp-image-card:hover img {
    transform: scale(1.1);
}

.corp-image-card--zoomed img {
    transform: scale(1.12);
}

.corp-image-card--zoomed:hover img {
    transform: scale(1.2);
}

.corp-image-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #a8c4cc 0%, #8fb3bd 100%);
}

.corp-image-card-placeholder i {
    font-size: 3.5rem;
    color: rgba(13, 31, 60, 0.3);
}

.corp-image-card-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.5rem;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(to top, rgba(0, 86, 92, 0.9) 0%, rgba(0, 86, 92, 0.55) 50%, rgba(0, 86, 92, 0.3) 100%);
    transition: padding 0.4s ease, background 0.4s ease;
}

.corp-image-card:hover .corp-image-card-overlay {
    background: transparent;
}

.corp-image-card-title {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 900;
    margin: 0;
    line-height: 1.25;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.corp-image-card:hover .corp-image-card-title {
    transform: translateY(-4px);
}

.corp-image-card-description {
    padding: 1rem 0 0 1rem;
    border-left: 3px solid #0d1f3c;
    margin-left: 0;
    margin-top: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    transition: border-color 0.3s ease, padding-left 0.3s ease;
}

.corp-image-card-description ul,
.corp-image-card-description ol {
    margin: 0;
    padding-left: 1.25rem;
}

.corp-image-card:hover + .corp-image-card-description,
.corp-image-card-link:hover + .corp-image-card-description {
    border-left-color: var(--corp-lime);
    padding-left: 1.25rem;
}

.corp-image-card-description p {
    font-size: 1.0rem;
    font-weight: 600 !important;
    color: #0d1f3c;
    line-height: 1.4;
    margin: 0px;
    font-weight: 500;
}

.corp-image-card-description strong,
.corp-image-card-description b {
    color: #0d1f3c;
    font-weight: 700;
}

/* ── Corp Intro Section + Image Grid Responsive ── */

/* Large desktop (≤1199px) */
@media (max-width: 1199px) {
    .corp-intro-title {
        font-size: 2.25rem;
    }

    .corp-image-grid-title {
        font-size: 2rem;
    }

    .corp-image-card {
        height: 220px;
    }
}

/* Tablet (≤991px) */
@media (max-width: 991px) {
    .corp-intro-section {
        min-height: auto;
    }

    .corp-intro-image-wrap {
        margin-bottom: 0;
    }

    .corp-intro-image-col {
        padding: 2rem 1rem;
    }

    .corp-intro-content {
        padding: 1rem 1rem 2.5rem;
    }

    .corp-intro-title {
        font-size: 2rem;
    }

    .corp-intro-shape-green,
    .corp-intro-shape-navy {
        opacity: 0.15;
    }

    .corp-image-grid-wrapper {
        padding: 2rem 1.5rem 1rem;
    }

    .corp-image-card {
        height: 200px;
    }

    .corp-sections-wrapper::before {
        display: none;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .corp-intro-content {
        padding: 2.5rem 1.5rem 2rem;
    }

    .corp-intro-title {
        margin-top: 1rem;
    }
}

/* Small tablet / large phone (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .corp-intro-section {
        margin-top: -40px;
    }

    .corp-intro-image-col {
        padding: 1.5rem 1rem;
    }

    .corp-intro-img {
        max-height: 350px;
    }

    .corp-image-grid {
        margin-top: -30px;
    }

    .corp-image-card {
        height: 280px;
    }
}

/* Mobile (≤767px) */
@media (max-width: 767px) {
    .corp-intro-title {
        font-size: 1.75rem;
    }

    .corp-image-grid-title {
        font-size: 1.75rem;
    }

    .corp-intro-content p {
        font-size: 1.0625rem;
    }

    .corp-image-grid-wrapper {
        border-radius: 12px;
        padding: 1.5rem 1rem 0.5rem;
    }

    .corp-image-card {
        height: 240px;
    }

    .corp-intro-accent-line {
        left: 0;
    }

    .corp-sections-wrapper::before {
        display: none;
    }
}

/* Mobile (≤575px) */
@media (max-width: 575px) {
    .corp-intro-section {
        margin-top: -35px;
        padding-bottom: 1rem;
    }

    .corp-intro-image-col {
        padding: 1rem 0.5rem;
    }

    .corp-intro-img {
        max-height: 300px;
        border-radius: 8px;
    }

    .corp-intro-content {
        padding: 1.5rem 1rem 1.5rem;
    }

    .corp-intro-title {
        font-size: 1.65rem;
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }

    .corp-intro-content p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 0.85rem;
    }

    .corp-intro-shape-green {
        width: 200px;
        height: 200px;
        opacity: 0.4;
    }

    .corp-image-grid {
        margin-top: -25px;
        padding: 0 0 2.5rem 0;
    }

    .corp-image-grid-wrapper {
        padding: 1.25rem 0.85rem 1rem;
        border-radius: 10px;
    }

    .corp-image-grid-title {
        font-size: 1.65rem;
        margin-bottom: 1.5rem;
    }

    .corp-image-card {
        height: 220px;
        border-radius: 10px;
    }

    .corp-image-card-title {
        font-size: 1.2rem;
        padding: 1.25rem 1.25rem;
    }

    .corp-image-card-description {
        padding: 0.85rem 0 0 0.85rem;
        margin-top: 1rem;
        border-left-width: 2px;
    }

    .corp-image-card-description p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* Extra small (≤375px) */
@media (max-width: 375px) {
    .corp-intro-title,
    .corp-image-grid-title {
        font-size: 1.5rem;
    }
}

/* ── Who We Help Mobile Carousel ── */
.corp-mobile-carousel {
    position: relative;
    padding-bottom: 3rem;
}

.corp-mobile-carousel .carousel-item {
    padding: 0 0.25rem;
}

.corp-mobile-carousel .corp-image-card {
    margin-bottom: 0;
}

.corp-mobile-carousel .corp-image-card-description {
    margin-bottom: 1rem;
}

/* Navigation arrows */
.corp-carousel-nav {
    width: 36px;
    height: 36px;
    background-color: var(--corp-teal, #00565c);
    border-radius: 50%;
    top: 120px;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.corp-carousel-nav:hover {
    background-color: #004a4f;
}

.carousel-control-prev.corp-carousel-nav {
    left: -5px;
}

.carousel-control-next.corp-carousel-nav {
    right: -5px;
}

.corp-carousel-arrow {
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
}

.corp-carousel-arrow--prev {
    transform: rotate(-135deg);
    margin-left: 3px;
}

.corp-carousel-arrow--next {
    transform: rotate(45deg);
    margin-right: 3px;
}

/* Pagination dots */
.corp-carousel-dots {
    position: relative;
    bottom: 0;
    margin: 1rem 0 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 0;
    list-style: none;
}

.corp-carousel-dots li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #b0c4c6;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 0;
    padding: 0;
    text-indent: -9999px;
}

.corp-carousel-dots li.active {
    background-color: var(--corp-teal, #00565c);
    transform: scale(1.2);
}

/* Section entrance animations */
.corp-intro-section,
.corp-image-grid,
.how-we-help-section,
.financial-future-section,
.google-reviews-section {
    opacity: 1;
    transition: opacity 0.6s ease;
}

/* ── How We Help Section ── */
.how-we-help-section {
    padding: 2rem 0 4rem;
    background-color: #ffffff;
    margin-top: -2rem;
}

.how-we-help-title {
    font-size: var(--corp-font-section-title);
    font-weight: 800;
    color: #1b3e71;
    margin-bottom: 2rem;
    line-height: 1.15;
}

/* Card structure */
.hwh-card {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hwh-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Card image top */
.hwh-card-image {
    height: 280px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    position: relative;
}

.hwh-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hwh-card:hover .hwh-card-image img {
    transform: scale(1.05);
}

.hwh-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hwh-card:hover .hwh-card-image::after {
    opacity: 1;
}

/* Color overlay on images */
.hwh-card--green .hwh-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 122, 62, 0.25);
    mix-blend-mode: multiply;
    opacity: 1;
}

.hwh-card--blue .hwh-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 58, 138, 0.25);
    mix-blend-mode: multiply;
    opacity: 1;
}

.hwh-card--navy .hwh-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 31, 60, 0.25);
    mix-blend-mode: multiply;
    opacity: 1;
}

.hwh-card--teal .hwh-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 110, 122, 0.25);
    mix-blend-mode: multiply;
    opacity: 1;
}

.hwh-card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0e8eb 0%, #c8d5da 100%);
}

.hwh-card-image-placeholder i {
    font-size: 3.5rem;
    color: rgba(13, 31, 60, 0.25);
}

/* Card body bottom - color backgrounds */
.hwh-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: background 0.3s ease;
}

.hwh-card:hover .hwh-card-body {
    filter: brightness(1.05);
}

/* Color variant backgrounds */
.hwh-card--green .hwh-card-body { background: #036835; }
.hwh-card--blue .hwh-card-body { background: #1b3e71; }
.hwh-card--teal .hwh-card-body { background: #177279; }
.hwh-card--navy .hwh-card-body { background: #034e53; }

.hwh-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.hwh-card-text {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hwh-card-text ul {
    padding-left: 0px;
    font-size: 13px;
    font-weight: 100;
}

.hwh-card-text li {
    margin-bottom: 5px;
}

.hwh-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hwh-card-list li {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    padding: 0;
}

.hwh-card-list li::before {
    content: "\2022";
    margin-right: 0.5rem;
}

/* Read more button inside card */
.hwh-read-more {
    margin-top: auto;
    padding-top: 10px;
    align-self: center;
    color: var(--corp-primary-deep) !important;
}

/* Color variant titles - all white on colored backgrounds */
.hwh-card--green .hwh-card-title,
.hwh-card--blue .hwh-card-title,
.hwh-card--navy .hwh-card-title,
.hwh-card--teal .hwh-card-title {
    color: #ffffff;
}

/* ── How We Help: Grouped layout (3 + 1 split) ── */
.hwh-layout {
    align-items: stretch;
}

.hwh-group-wrapper {
    border: none;
    border-radius: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: transparent;
}

.hwh-group-wrapper > .row {
    flex: 1;
    margin-left: -8px;
    margin-right: -8px;
}

.hwh-group-wrapper > .row > [class*="col"] {
    padding-left: 8px;
    padding-right: 8px;
}

.hwh-layout {
    margin-left: -8px;
    margin-right: -8px;
}

.hwh-layout > [class*="col"] {
    padding-left: 8px;
    padding-right: 8px;
}

.hwh-group-wrapper .corp-warning-box {
    margin-top: 0.5rem;
    margin-bottom: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}

.hwh-group-wrapper .hwh-card {
    height: 100%;
}

.hwh-layout > .col-lg-3 {
    align-self: flex-start;
}

.hwh-layout > .col-lg-3 > .hwh-card {
    height: auto;
    margin-top: 0;
}

/* ── Financial Future CTA Section ── */
.financial-future-section {
    position: relative;
    background: #c3d9d9;
    padding: 46px 1px 0;
    overflow: hidden;
}

.ff-geometric {
    position: absolute;
    top: -30px;
    right: -20px;
    width: 400px;
    height: 400px;
    z-index: 1;
    pointer-events: none;
}

.ff-geometric-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top right;
}

.ff-content {
    position: relative;
    z-index: 2;
    padding-bottom: 56px;
}

.ff-title {
    font-size: var(--corp-font-section-title);
    font-weight: 900;
    color: #00565c;
    line-height: 1.2;
    margin-bottom: 16px;
}

.ff-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00565c;
    font-style: normal;
    margin-bottom: 20px;
    line-height: 1.3;
}

.ff-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.ff-checklist li {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #00565c;
    margin-bottom: 4px;
    line-height: 1.2;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ff-checklist li:nth-child(1) { animation-delay: 0.1s; }
.ff-checklist li:nth-child(2) { animation-delay: 0.2s; }
.ff-checklist li:nth-child(3) { animation-delay: 0.3s; }
.ff-checklist li:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ff-check-icon {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ff-checklist li:hover .ff-check-icon {
    transform: scale(1.15);
}

.ff-description {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00565c;
    line-height: 1.3;
    font-style: normal;
    margin-bottom: 30px;
    max-width: 500px;
}

.ff-btn {
    display: inline-block;
    background: var(--corp-teal, #00565c) !important;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 1rem 3.5rem;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s ease;
}

.ff-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.ff-btn:hover::before {
    width: 300px;
    height: 300px;
}

.ff-btn:hover {
    background: var(--corp-cta-green, #AFCE67) !important;
    color: var(--corp-primary-deep, #010c47) !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(134, 165, 103, 0.4);
}

.ff-btn:focus-visible {
    outline: 2px solid #00565c;
    outline-offset: 2px;
}

.ff-btn:active {
    transform: translateY(0);
}

.ff-image-col {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: stretch;
}

.ff-image {
    position: absolute;
    bottom: 0;
    max-height: 110%;
    width: auto;
    object-fit: contain;
    object-position: bottom center;
}

/* ── Google Reviews Carousel ── */
.google-reviews-section {
    padding: 30px 0 30px;
    background: #f5f5f5;
}

.gr-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 28px 24px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease;
}

.gr-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: #AFCE67;
}

.gr-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.gr-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #056735;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    flex-shrink: 0;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s ease;
}

.gr-card:hover .gr-avatar {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(74, 103, 65, 0.3);
}

.gr-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.gr-avatar span {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.gr-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #4380d8;
    margin: 0;
}

.gr-stars {
    margin-bottom: 12px;
}

.gr-star-filled {
    color: #f5a623;
    font-size: 1.2rem;
}

.gr-star-empty {
    color: #ddd;
    font-size: 1.2rem;
}

.gr-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 18px;
}

.gr-google-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #888;
    margin-top: auto;
}

.gr-google-badge img {
    flex-shrink: 0;
}

.gr-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.gr-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #c4d4c4;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.gr-dots button.active {
    background: #4a6741;
}

/* ── How We Help Responsive ── */
@media (max-width: 1199px) {
    .how-we-help-title {
        font-size: 2.25rem;
    }

    .hwh-card-image {
        height: 220px;
    }
}

@media (max-width: 991px) {
    .how-we-help-title {
        font-size: 2rem;
    }

    .hwh-card-image {
        height: 240px;
    }

    .hwh-group-wrapper {
        padding: 0;
    }

    .hwh-layout > .col-lg-3 > .hwh-card {
        height: auto;
    }

    .ff-title {
        font-size: 2.2rem;
    }

    .ff-content {
        padding-bottom: 40px;
    }

    .financial-future-section {
        padding: 50px 0 0;
    }
}

@media (max-width: 767px) {
    .how-we-help-section {
        padding: 2rem 0 3rem;
    }

    .how-we-help-title {
        font-size: 1.75rem;
    }

    .hwh-card-image {
        height: 260px;
    }

    .hwh-group-wrapper {
        border: 1px solid #e0e5ea;
        padding: 0.75rem;
        border-radius: 12px;
    }

    .hwh-group-wrapper .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hwh-group-wrapper .hwh-card {
        height: auto;
    }

    .hwh-layout > .col-lg-3 > .hwh-card {
        height: auto;
    }

    .ff-title {
        font-size: 1.8rem;
    }

    .financial-future-section {
        padding: 40px 0 40px;
    }

    .ff-content {
        padding-bottom: 0;
    }

    .google-reviews-section {
        padding: 40px 0 30px;
    }

    .gr-card {
        padding: 20px 18px 16px;
        border-radius: 10px;
    }

    .gr-avatar {
        width: 38px;
        height: 38px;
    }
}

/* ── Additional mobile responsive (576-767px) ── */
@media (max-width: 767px) and (min-width: 576px) {
    .hwh-card-image {
        height: 220px;
    }

    .ff-geometric {
        width: 250px;
        height: 250px;
        top: -20px;
    }

    .financial-future-section {
        padding: 60px 0 0;
    }
}

/* ── Mobile devices (≤575px) ── */
@media (max-width: 575px) {
    /* How We Help */
    .how-we-help-section {
        padding: 1.5rem 0 2.5rem;
        margin-top: -1.5rem;
    }

    .how-we-help-title {
        font-size: 1.65rem;
        margin-bottom: 1.5rem;
    }

    .hwh-card {
        border-radius: 12px;
        margin-bottom: 1rem;
    }

    .hwh-group-wrapper {
        border: 1.5px solid #e0e5ea;
        padding: 0.5rem;
        border-radius: 10px;
    }

    .hwh-card-image {
        height: 200px;
        border-radius: 12px 12px 0 0;
    }

    .hwh-card-body {
        padding: 1.25rem;
    }

    .hwh-card-title {
        font-size: 1.25rem;
        margin-bottom: 0.65rem;
    }

    .hwh-card-text {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 0.85rem;
    }

    .hwh-card-list li {
        font-size: 1rem;
        padding: 0.1rem 0;
    }

    /* Financial Future */
    .financial-future-section {
        padding: 50px 0 35px;
    }

    .ff-geometric {
        width: 180px;
        height: 180px;
        top: -15px;
        right: -15px;
        opacity: 0.6;
    }

    .ff-content {
        padding-bottom: 0;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .ff-title {
        font-size: 1.65rem;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .ff-subtitle {
        font-size: 1rem;
        margin-bottom: 16px;
        line-height: 1.65;
    }

    .ff-checklist {
        margin-bottom: 20px;
    }

    .ff-checklist li {
        font-size: 0.875rem;
        margin-bottom: 8px;
        line-height: 1.35;
    }

    .ff-check-icon {
        width: 18px;
        height: 18px;
        margin-right: 10px;
    }

    .ff-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .ff-btn {
        padding: 0.55rem 1.5rem;
        font-size: 0.875rem;
        width: 100%;
        text-align: center;
    }

    /* Google Reviews */
    .google-reviews-section {
        padding: 35px 0 25px;
    }

    .gr-card {
        padding: 20px 18px 16px;
        border-radius: 10px;
        margin-bottom: 0.75rem;
    }

    .gr-card-header {
        margin-bottom: 12px;
    }

    .gr-avatar {
        width: 38px;
        height: 38px;
        margin-right: 12px;
    }

    .gr-avatar span {
        font-size: 1rem;
    }

    .gr-name {
        font-size: 1.05rem;
    }

    .gr-stars {
        margin-bottom: 10px;
    }

    .gr-star-filled,
    .gr-star-empty {
        font-size: 1.1rem;
    }

    .gr-text {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 14px;
    }

    .gr-google-badge {
        font-size: 0.75rem;
        gap: 6px;
    }

    .gr-dots {
        margin-top: 20px;
        gap: 6px;
    }

    .gr-dots button {
        width: 10px;
        height: 10px;
    }
}

/* ── Extra small (≤375px) ── */
@media (max-width: 375px) {
    .how-we-help-title,
    .ff-title {
        font-size: 1.5rem;
    }
}

/* ── Tablet (≤1199px) — ff-geometric ── */
@media (max-width: 1199px) {
    .ff-geometric {
        width: 300px;
        height: 300px;
    }
}

/* ── Breadcrumb ── */
.corp-breadcrumb-link {
    color: var(--primary);
}

/* ============================================
   FAQ PAGE
   ============================================ */
.corp-faq-section {
    padding: var(--corp-section-py) 0;
}

.corp-faq-group {
    margin-bottom: 2.5rem;
}

.corp-faq-group:last-child {
    margin-bottom: 0;
}

.corp-faq-category-title {
    font-family: 'Circe', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--corp-navy);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #eef0f2;
}

.corp-faq-card {
    background: var(--corp-white);
    border: 1px solid #eef0f2;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: box-shadow 0.25s ease;
}

.corp-faq-card:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.corp-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.125rem 1.25rem;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Circe', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a2e;
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1.4;
}

.corp-faq-question:hover {
    color: var(--corp-primary);
}

.corp-faq-question:focus {
    outline: none;
    box-shadow: none;
}

.corp-faq-question:not(.collapsed) {
    color: var(--corp-primary);
}

.corp-faq-question .corp-faq-icon {
    flex-shrink: 0;
    margin-left: 1rem;
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: #9ca3af;
}

.corp-faq-question:not(.collapsed) .corp-faq-icon {
    transform: rotate(180deg);
    color: var(--corp-primary);
}

.corp-faq-answer {
    padding: 0 1.25rem 1.125rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}

.corp-faq-answer p:last-child {
    margin-bottom: 0;
}

.corp-faq-empty {
    text-align: center;
    padding: 3rem 1rem;
}

.corp-faq-empty i {
    font-size: 3rem;
    color: #ccc;
    display: block;
    margin-bottom: 1rem;
}

.corp-faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid #eef0f2;
}

.corp-faq-cta h4 {
    font-family: 'Circe', sans-serif;
    font-weight: 700;
    color: var(--corp-navy);
    margin-bottom: 0.5rem;
}

.corp-faq-cta p {
    color: #6b7280;
    margin-bottom: 1.25rem;
}

@media (max-width: 575px) {
    .corp-faq-section {
        padding: var(--corp-section-py-mobile) 0;
    }

    .corp-faq-question {
        padding: 0.875rem 1rem;
        font-size: 0.925rem;
    }

    .corp-faq-answer {
        padding: 0 1rem 1rem;
        font-size: 0.875rem;
    }

    .corp-faq-category-title {
        font-size: 1.25rem;
    }
}

/* ============================================
   BLOG PAGE
   ============================================ */
.corp-blog-section {
    padding: var(--corp-section-py) 0;
}

.corp-blog-search-info {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Blog Card */
.corp-blog-card {
    display: block;
    background: var(--corp-white);
    border: 1px solid #eef0f2;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.corp-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
}

.corp-blog-card-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.corp-blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.corp-blog-card:hover .corp-blog-card-img img {
    transform: scale(1.05);
}

.corp-blog-card-placeholder {
    width: 100%;
    height: 100%;
    background: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 2.5rem;
}

.corp-blog-card-body {
    padding: 1.25rem;
}

.corp-blog-card-category {
    display: inline-block;
    font-family: 'Circe', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--corp-primary);
    background: rgba(0, 107, 111, 0.08);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.corp-blog-card-title {
    font-family: 'Circe', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.corp-blog-card:hover .corp-blog-card-title {
    color: var(--corp-primary);
}

.corp-blog-card-excerpt {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.corp-blog-card-meta {
    font-size: 0.8rem;
    color: #9ca3af;
}

.corp-blog-card-meta i {
    margin-right: 0.2rem;
}

/* Blog Pagination */
.corp-blog-pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.corp-blog-pagination .pagination {
    gap: 0.25rem;
}

.corp-blog-pagination .page-link {
    border-radius: 6px;
    border: 1px solid #dee2e6;
    color: #495057;
    font-size: 0.875rem;
    padding: 0.4rem 0.75rem;
}

.corp-blog-pagination .page-item.active .page-link {
    background: var(--corp-primary);
    border-color: var(--corp-primary);
    color: var(--corp-white);
}

/* Blog Sidebar */
.corp-blog-sidebar-widget {
    background: var(--corp-white);
    border: 1px solid #eef0f2;
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.corp-blog-sidebar-title {
    font-family: 'Circe', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--corp-navy);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #eef0f2;
}

.corp-blog-search-box {
    position: relative;
}

.corp-blog-search-box input {
    padding-right: 2.75rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    font-size: 0.9rem;
}

.corp-blog-search-box input:focus {
    border-color: var(--corp-primary);
    box-shadow: 0 0 0 0.15rem rgba(0, 107, 111, 0.15);
}

.corp-blog-search-box button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2.75rem;
    border: none;
    background: none;
    color: #6b7280;
    font-size: 1.1rem;
    cursor: pointer;
}

.corp-blog-search-box button:hover {
    color: var(--corp-primary);
}

.corp-blog-sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.corp-blog-sidebar-categories li + li {
    border-top: 1px solid #f3f4f6;
}

.corp-blog-sidebar-categories a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    color: #495057;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.corp-blog-sidebar-categories a:hover,
.corp-blog-sidebar-categories a.active {
    color: var(--corp-primary);
}

.corp-blog-cat-count {
    background: #f3f4f6;
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
}

.corp-blog-sidebar-recent {
    list-style: none;
    padding: 0;
    margin: 0;
}

.corp-blog-sidebar-recent li + li {
    border-top: 1px solid #f3f4f6;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
}

.corp-blog-sidebar-recent a {
    display: flex;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.corp-blog-sidebar-recent a:hover .corp-blog-recent-title {
    color: var(--corp-primary);
}

.corp-blog-recent-img {
    width: 70px;
    height: 55px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}

.corp-blog-recent-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.corp-blog-recent-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.corp-blog-recent-title {
    font-family: 'Circe', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: #1a1a2e;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.corp-blog-recent-date {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.2rem;
}

.corp-blog-recent-date i {
    margin-right: 0.15rem;
}

/* Blog Detail */
.corp-blog-detail {
    margin-bottom: 2rem;
}

.corp-blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.corp-blog-detail-date {
    font-size: 0.875rem;
    color: #9ca3af;
}

.corp-blog-detail-date i {
    margin-right: 0.2rem;
}

.corp-blog-detail-banner {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.corp-blog-detail-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.corp-blog-detail-body {
    font-size: 1rem;
    color: #374151;
    line-height: 1.8;
}

.corp-blog-detail-body h2 {
    font-family: 'Circe', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--corp-navy);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.corp-blog-detail-body h3 {
    font-family: 'Circe', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--corp-navy);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.corp-blog-detail-body p {
    margin-bottom: 1rem;
}

.corp-blog-detail-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.corp-blog-detail-body blockquote {
    border-left: 4px solid var(--corp-primary);
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    background: #f8fafb;
    border-radius: 0 8px 8px 0;
    color: #374151;
    font-style: italic;
}

.corp-blog-back {
    margin-bottom: 2rem;
}

/* Blog Empty */
.corp-blog-empty {
    text-align: center;
    padding: 3rem 1rem;
}

.corp-blog-empty i {
    font-size: 3rem;
    color: #ccc;
    display: block;
    margin-bottom: 1rem;
}

@media (max-width: 575px) {
    .corp-blog-section {
        padding: var(--corp-section-py-mobile) 0;
    }

    .corp-blog-card-img {
        height: 160px;
    }

    .corp-blog-card-title {
        font-size: 1rem;
    }

    .corp-blog-detail-body {
        font-size: 0.95rem;
    }

    .corp-blog-detail-body h2 {
        font-size: 1.3rem;
    }

    .corp-blog-detail-body h3 {
        font-size: 1.1rem;
    }
}

/* ============================================
   TEAM PAGE
   ============================================ */
.corp-team-header {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}
.team-card:hover .team-social-overlay {
    opacity: 1 !important;
}

.corp-team-photo {
    height: 300px;
    object-fit: cover;
}

.corp-team-placeholder {
    height: 300px;
    background: #f8f9fa;
}

.corp-team-placeholder-circle {
    width: 100px;
    height: 100px;
    background: var(--primary);
    opacity: 0.15;
}

.corp-team-placeholder-icon {
    color: var(--primary);
    opacity: 1;
}

.team-social-overlay {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 50%, rgba(0,0,0,0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* ============================================
   CORPORATE FOOTER
   Moved from layout inline <style> — Phase 4
   ============================================ */
.ftr {
    background: var(--corp-primary);
    color: var(--corp-white);
}
.ftr-main {
    padding: 0 0 30px;
    background: var(--corp-primary);
}
.ftr-main .corp-container {
    padding-top: 50px;
}
.ftr-main .col-lg-2:first-child {
    padding-top: 0;
}
.ftr-main .col-lg-2:first-child .ftr-logos {
    margin-top: -50px;
}
.ftr-logos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.ftr-logo-main {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
.ftr-logo-fallback {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ftr-logo-icon {
    width: 44px;
    height: 44px;
    background: #1a73e8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--corp-white);
    font-weight: 800;
    font-size: 1.3rem;
}
.ftr-logo-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--corp-white);
    line-height: 1.1;
}
.ftr-logo-tagline {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
}
.ftr-partner-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}
.ftr-partner-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 60px;
}
.ftr-partner-icon {
    width: 28px;
    height: 28px;
    background: #2d7d46;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--corp-white);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.ftr-partner-text {
    line-height: 1.2;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}
.ftr-partner-text strong {
    color: var(--corp-white);
    font-size: 0.85rem;
}
.ftr-broker-text {
    width: 100%;
}
.ftr-broker-text img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 50px;
}
.ftr-heading {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--corp-white);
    margin-bottom: 16px;
}
.ftr-subheading {
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--corp-white);
    margin-bottom: 10px;
    margin-top: 16px;
}
@media (max-width: 767px) {
    .ftr-subheading {
        text-align: center;
    }
}
.ftr-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ftr-links li {
    margin-bottom: 8px;
}
.ftr-links li::before {
    content: "\00b7";
    margin-right: 8px;
    color: var(--corp-white);
    font-weight: 700;
}
.ftr-links a {
    color: var(--corp-white);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.ftr-links a:hover {
    opacity: 0.8;
    text-decoration: none;
}
.ftr-contact {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 14px;
}
.ftr-contact a {
    color: var(--corp-white);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.ftr-contact a:hover {
    opacity: 0.8;
}
.ftr-address {
    color: var(--corp-white);
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0;
}
.ftr-social {
    display: flex;
    gap: 12px;
}
.ftr-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--corp-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--corp-primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.ftr-social a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    color: var(--corp-primary);
}
.ftr-badge {
    text-align: center;
}
.ftr-badge-img {
    max-width: 100px;
    height: auto;
}
.ftr-badge-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--corp-badge-gold);
    background: linear-gradient(135deg, var(--corp-badge-gold) 0%, var(--corp-badge-gold-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px;
}
.ftr-badge-iw {
    font-size: 1rem;
    font-weight: 900;
    color: var(--corp-white);
    line-height: 1;
}
.ftr-badge-label {
    font-size: 0.35rem;
    font-weight: 700;
    color: var(--corp-white);
    letter-spacing: 1px;
    line-height: 1;
    margin-top: 1px;
}
.ftr-badge-sub {
    font-size: 0.3rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    text-align: center;
    line-height: 1.2;
    margin-top: 1px;
}
.ftr-badge-year {
    font-size: 0.4rem;
    font-weight: 800;
    color: var(--corp-white);
    line-height: 1;
    margin-top: 1px;
}
.ftr-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 18px 0;
    text-align: center;
    background: var(--corp-primary-deep);
}
.ftr-bottom p {
    color: var(--corp-white);
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.5;
}
.ftr-bottom p:last-child {
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .ftr-main {
        padding: 15px 0 15px;
    }
    .ftr-main .corp-container {
        padding-top: 20px;
    }
    .ftr-badge-circle {
        width: 65px;
        height: 65px;
    }
    .ftr-main .col-lg-2.col-md-4.mb-4:first-child {
        margin-bottom: 2.5rem !important;
    }
    .ftr-logos {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem 1rem;
        align-items: center;
    }
    .ftr-logo-item { width: auto; }
    .ftr-logo-main-wrap { order: 1; justify-self: start; }
    .ftr-logo-main-wrap .ftr-logo-main { max-width: 100px; }
    .ftr-badge-mobile { order: 2; justify-self: end; }
    .ftr-badge-mobile img { max-width: 50px; height: auto; }
    .ftr-partner-logo { order: 3; justify-self: start; width: auto; }
    .ftr-broker-text { order: 4; justify-self: end; width: auto; }
    .ftr-main .col-lg-2:first-child .ftr-logos { margin-top: 0; }
}

/* ============================================
   CORPORATE MISC (layout-level shared styles)
   Moved from layout inline <style> — Phase 4
   ============================================ */
.corporate-nav .nav-link {
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.75rem 1rem !important;
    color: var(--dark);
    transition: color 0.2s ease;
}
.corporate-nav .nav-link:hover,
.corporate-nav .nav-link.active {
    color: var(--primary);
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.section-subheading {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
}

.pagination .page-link,
.page-item.disabled .page-link {
    min-width: 32px;
    min-height: 32px;
    line-height: 32px;
    text-align: center;
    padding: 0;
    border: 1px solid var(--soft-light);
    font-size: 0.875rem;
    border-radius: 0 !important;
    color: var(--dark);
}
.pagination .page-item {
    margin: 0 5px;
}

.form-control:focus {
    border-width: 2px !important;
}

/* ============================================
   BREADCRUMB BANNER & LEGAL CONTENT PAGES
   ============================================ */

.corp-breadcrumb-banner {
    background-color: #006B6F;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.corp-breadcrumb-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 86, 92, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 86, 92, 0.4) 0%, transparent 60%);
    pointer-events: none;
}

.corp-breadcrumb-title {
    font-family: 'Circe', sans-serif;
    font-weight: 700;
    font-size: 3.2rem;
    color: var(--corp-white);
    margin: 0 0 14px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

.corp-breadcrumb-trail {
    font-family: 'Circe', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    z-index: 1;
    letter-spacing: 0.01em;
}

.corp-breadcrumb-trail a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.corp-breadcrumb-trail a:hover,
.corp-breadcrumb-trail a:focus {
    color: var(--corp-white);
}

.corp-breadcrumb-sep {
    display: inline-block;
    margin: 0 10px;
    font-size: 0.55rem;
    vertical-align: middle;
    opacity: 0.7;
}

/* Legal / Policy content wrapper */
.corp-legal-content {
    padding: var(--corp-section-py) 0;
    background: var(--corp-white);
}

.corp-legal-body {
    max-width: 820px;
    margin: 0 auto;
}

.corp-legal-body h2 {
    font-family: 'Circe', sans-serif;
    font-weight: 700;
    font-size: 1.85rem;
    color: var(--corp-teal);
    margin: 0 0 24px;
    line-height: var(--corp-line-height-tight);
    letter-spacing: -0.01em;
}

.corp-legal-body h3 {
    font-family: 'Circe', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--corp-text-dark);
    margin: 40px 0 14px;
    line-height: 1.3;
}

.corp-legal-body p {
    font-family: 'Circe', sans-serif;
    font-size: var(--corp-font-body);
    color: var(--corp-text-body);
    line-height: 1.7;
    margin: 0 0 16px;
}

.corp-legal-body p strong {
    color: var(--corp-text-dark);
}

.corp-legal-body ul {
    margin: 0 0 20px;
    padding-left: 24px;
    list-style: disc;
}

.corp-legal-body ul li {
    font-family: 'Circe', sans-serif;
    font-size: var(--corp-font-body);
    color: var(--corp-text-body);
    line-height: 1.7;
    margin-bottom: 8px;
}

.corp-legal-body ul li strong {
    color: var(--corp-text-dark);
}

.corp-legal-updated {
    font-size: var(--corp-font-small) !important;
    color: var(--gray) !important;
    font-style: italic;
    margin-bottom: 8px !important;
}

.corp-remuneration-download {
    margin-top: 40px;
}

.corp-legal-contact-block {
    background: var(--corp-light-bg);
    border-left: 3px solid var(--corp-teal);
    padding: 20px 24px;
    margin: 16px 0 24px;
    border-radius: 0 6px 6px 0;
}

.corp-legal-contact-block p {
    margin-bottom: 4px !important;
    font-size: 0.95rem !important;
}

/* Responsive */
@media (max-width: 991px) {
    .corp-breadcrumb-title {
        font-size: 2.4rem;
    }

    .corp-breadcrumb-banner {
        padding: 56px 0 52px;
    }
}

@media (max-width: 575px) {
    .corp-breadcrumb-title {
        font-size: 1.85rem;
    }

    .corp-breadcrumb-banner {
        padding: 100px 0 40px;
    }

    .corp-legal-content {
        padding: var(--corp-section-py-mobile) 0;
    }

    .corp-legal-body h2 {
        font-size: 1.5rem;
    }

    .corp-legal-body h3 {
        font-size: 1.15rem;
        margin-top: 30px;
    }
}
