/* Custom overrides on top of Bootstrap */

:root {
    --brand-navy: #002768;
    --brand-red: #BF0B30;
    --brand-red-hover: #9a091f;
    --nav-text: #000000;
    --font-body: "Poppins", sans-serif;
    --font-heading: "Syne", sans-serif;
    --font-display: "Tilt Warp", sans-serif;
}

body {
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

.font-display {
    font-family: var(--font-display);
}

main {
    flex: 1;
}

/* ---------- Header ---------- */

.site-navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    width: 100%;
    background: transparent;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}

.site-logo {
    height: 122px;
    width: auto;
    display: block;
}

.site-navbar .nav-link {
    font-family: var(--font-body);
    color: var(--nav-text);
    font-weight: 500;
    font-size: 14.4px;
    padding: 0.5rem 0.85rem !important;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus,
.site-navbar .nav-link.active {
    color: var(--brand-red);
}

.site-navbar .dropdown-toggle::after {
    margin-left: 0.35em;
    vertical-align: 0.15em;
}

.btn-get-started {
    font-family: var(--font-heading);
    background-color: var(--brand-red);
    border-color: var(--brand-red);
    color: #fff;
    font-weight: 500;
    font-size: 14.4px;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
}

.btn-get-started:hover,
.btn-get-started:focus {
    background-color: var(--brand-red-hover);
    border-color: var(--brand-red-hover);
    color: #fff;
}

.navbar-toggler {
    border-color: rgba(0, 0, 0, 0.15);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem rgba(191, 11, 48, 0.25);
}

.site-navbar-mobile-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-left: auto;
}

.btn-header-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: var(--brand-red);
    border: 1px solid var(--brand-red);
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    line-height: 1;
}

.btn-header-call:hover,
.btn-header-call:focus {
    background: var(--brand-red-hover);
    border-color: var(--brand-red-hover);
    color: #fff;
}

.btn-header-call i {
    font-size: 0.95rem;
}

.site-logo-offcanvas {
    height: 52px;
}

.site-nav-offcanvas {
    width: min(320px, 88vw);
    border: 0;
}

.site-nav-offcanvas .offcanvas-header {
    padding: 1rem 1.15rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-nav-offcanvas .offcanvas-body {
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.35rem 1.75rem;
}

.site-nav-offcanvas .navbar-nav {
    width: 100%;
}

.site-nav-offcanvas .nav-link {
    font-family: var(--font-body);
    color: var(--nav-text);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.7rem 0 !important;
}

.site-nav-offcanvas .nav-link:hover,
.site-nav-offcanvas .nav-link:focus {
    color: var(--brand-red);
}

.site-nav-offcanvas .dropdown-menu {
    border: 0;
    box-shadow: none;
    padding: 0 0 0.35rem 0.85rem;
    background: transparent;
}

.site-nav-offcanvas .dropdown-item {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: #444;
    padding: 0.4rem 0;
}

.site-nav-offcanvas .btn-get-started {
    width: 100%;
}

/* ---------- Partners slider ---------- */

.partners-slider {
    background: var(--brand-red);
    overflow: hidden;
    padding: 1.35rem 0;
    position: relative;
    z-index: 2;
}

.partners-swiper {
    width: 100%;
    overflow: hidden;
}

.partners-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
}

.partners-swiper .swiper-slide {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-swiper .swiper-slide img {
    display: block;
    height: 48px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 767.98px) {
    .partners-slider {
        padding: 1.1rem 0;
    }

    .partners-swiper .swiper-slide {
        height: 44px;
    }

    .partners-swiper .swiper-slide img {
        height: 38px;
        max-width: 140px;
    }
}

/* ---------- Ideas / Features ---------- */

.ideas-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0 130px;
    background: #fafafa;
}

.ideas-section::before,
.ideas-section::after {
    content: "";
    position: absolute;
    width: 342.94px;
    height: 342.94px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
}

.ideas-section::before {
    right: -80px;
    bottom: 50px;
    background: rgba(0, 39, 104, 0.6);
}

.ideas-section::after {
    right: 120px;
    bottom: 50px;
    background: rgba(191, 11, 48, 0.6);
}

.ideas-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ideas-book-stack {
    position: absolute;
    left: 0;
    bottom: 70%;
    width: clamp(90px, 12vw, 140px);
    z-index: 4;
    pointer-events: none;
    user-select: none;
    animation: bannerFloat 5s ease-in-out infinite;
}

.ideas-intro {
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.ideas-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.75rem, 3.2vw, 40px);
    text-transform: uppercase;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.ideas-title span {
    color: var(--brand-navy);
}

.ideas-desc {
    color: #0E0F10;
    font-size: 18px;
    font-weight: 500;
    line-height: 23.35px;
    margin: 0 auto;
    max-width: 1041.54px;
    font-family: var(--font-heading);
}

.ideas-cards-swiper {
    position: relative;
    z-index: 1;
    margin-bottom: 3.5rem;
    overflow: visible;
}

.feature-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0 13px 50px;
}

.feature-card-body {
    position: relative;
    z-index: 1;
    background: #f2f2f2;
    border-radius: 1.5rem;
    padding: 15px 15px 20px;
    text-align: center;
    flex: 1;
}

.feature-card-icon {
    display: block;
    height: 78px;
    width: auto;
    max-width: 90px;
    margin: 0 auto 1.25rem;
    object-fit: contain;
}

.feature-card-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 20px;
    color: #121212;
    margin-bottom: 0.85rem;
    line-height: 21px;
}

.feature-card-text {
    color: #000000EF;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    margin: 0;
}

.feature-card-accent {
    position: absolute;
    z-index: 0;
    left: 0;
    width: 100%;
    bottom: -12%;
    height: calc(60% + 2.5rem);
    object-fit: fill;
    pointer-events: none;
    user-select: none;
}

.ideas-services-bar {
    position: relative;
    z-index: 3;
    background: #002768;
    padding: 1.15rem 0;
    overflow: visible;
    width: 100%;
}

.ideas-services-marquee {
    overflow: hidden;
    width: 100%;
}

.ideas-services-track {
    display: flex;
    width: max-content;
    animation: servicesMarquee 28s linear infinite;
}

.ideas-services-bar:hover .ideas-services-track {
    animation-play-state: paused;
}

.ideas-services-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 1.75rem;
    padding-right: 1.75rem;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.25rem, 1.5vw, 26.61px);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.ideas-star {
    width: 47px;
    height: 50px;
    flex-shrink: 0;
    display: block;
}

@keyframes servicesMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---------- Publish services ---------- */

.publish-services-section {
    position: relative;
    padding: 5.5rem 0 0;
    background: #fff;
    overflow: hidden;
}

.publish-service-inner {
    position: relative;
    padding-bottom: 100px;
}

.publish-ellipses {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 0;
}

.publish-ellipses::before,
.publish-ellipses::after {
    content: "";
    position: absolute;
    width: 342.94px;
    height: 342.94px;
    border-radius: 50%;
    filter: blur(80px);
}

.publish-ellipses::before {
    background: rgba(0, 39, 104, 0.6);
}

.publish-ellipses::after {
    background: rgba(191, 11, 48, 0.6);
}

.publish-ellipses--tl {
    top: 0;
    left: 0;
}

.publish-ellipses--tl::before {
    left: -100px;
    top: -80px;
}

.publish-ellipses--tl::after {
    left: 80px;
    top: -40px;
}

.publish-ellipses--br {
    right: -100px;
    bottom: 0;
}

.publish-ellipses--br::before {
    right: -80px;
    bottom: -20px;
}

.publish-ellipses--br::after {
    right: 120px;
    bottom: 0;
}

.publish-ellipses--bl {
    left: -100px;
    bottom: 0;
}

.publish-ellipses--bl::before {
    left: -80px;
    bottom: -20px;
}

.publish-ellipses--bl::after {
    left: 120px;
    bottom: 0;
}

.promo-cta-main {
    position: relative;
    padding-bottom: 100px;
}

.publish-services-section .container {
    position: relative;
    z-index: 1;
    padding-bottom: 130px;
}

.publish-services-intro {
    margin-bottom: 3.5rem;
    position: relative;
}

.publish-services-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    color: #171717;
    text-transform: uppercase;
    max-width: 649px;
    margin: 0 auto 1.25rem;
    line-height: 1.15;
}

.publish-services-lead-wrap {
    position: relative;
    max-width: 1041.54px;
    margin: 0 auto;
}

.publish-services-lead {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 18px;
    line-height: 23.35px;
    color: #171717;
    max-width: 1041.54px;
    margin: 0 auto;
}

.publish-services-book-icon {
    position: absolute;
    right: -50px;
    bottom: -1.5rem;
    width: clamp(70px, 9vw, 110px);
    height: auto;
    pointer-events: none;
    user-select: none;
    animation: bannerFloat 5.5s ease-in-out infinite 0.4s;
}

.publish-service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #e9e9e9;
    border-radius: 0 0 1.25rem 1.25rem;
    overflow: hidden;
}

.publish-service-card-media {
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: #ddd;
}

.publish-service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.publish-service-card-body {
    padding: 1.35rem 1.35rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.publish-service-tag {
    display: block;
    color: #032768;
    font-family: var(--font-body);
    font-size: 13.28px;
    font-weight: 600;
    margin-bottom: 0.55rem;
}

.publish-service-card-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: clamp(1.15rem, 1.8vw, 25px);
    color: #171717;
    margin-bottom: 0.75rem;
    line-height: 26px;
}

.publish-service-card-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.45;
    color: #0E0E0E;
    margin-bottom: 1.25rem;
    flex: 1;
}

.publish-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--brand-red);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13.28px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.publish-service-arrow {
    width: 14px;
    height: auto;
    display: block;
    flex-shrink: 0;
}

.publish-service-link:hover {
    color: var(--brand-red-hover);
}

.publish-services-cta {
    margin-top: 80px;
}

.btn-publish-more {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14.4px;
    padding: 0.75rem 2.25rem;
}

.btn-publish-more:hover,
.btn-publish-more:focus {
    background: var(--brand-red-hover);
    border-color: var(--brand-red-hover);
    color: #fff;
}

.promo-cta-panel {
    position: relative;
    z-index: 1;
    border-radius: 1.75rem;
    overflow: hidden;
    color: #fff;
}
.promo-cta-panel:before {
    content: '';
    height: 100%;
    width: 95%;
    background: #252525;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0px);
    z-index: -1;
    border-radius: 14px;
}

.promo-cta-content {
    max-width: 785px;
    margin: 0 auto;
    padding: 80px 0;
}

.promo-cta-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.6rem, 3vw, 40px);
    color: #fff;
    text-transform: uppercase;
    margin: 0 auto 1.25rem;
    line-height: 1.15;
}

.promo-cta-text {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 18px;
    line-height: 23.35px;
    color: #fff;
    max-width: 1041.54px;
    margin: 0 auto 2rem;
}

.btn-promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14.4px;
    padding: 0.75rem 1.6rem;
}

.btn-promo-cta:hover,
.btn-promo-cta:focus {
    background: var(--brand-red-hover);
    border-color: var(--brand-red-hover);
    color: #fff;
}

.promo-cta-arrow {
    width: 13px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.promo-cta-rack {
    line-height: 0;
}

.promo-cta-rack img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------- Shared content section + launch approach ---------- */

.content-section {
    background: #fff;
}
.launch-approach-inner {
    position: relative;
}

.launch-approach-section {
    padding: 5rem 0 50px;
}

.launch-approach-section .container {
    position: relative;
    z-index: 1;
}

.launch-approach-leaf {
    position: absolute;
    right: 0;
    bottom: 1.5rem;
    width: clamp(110px, 16vw, 200px);
    z-index: 2;
    pointer-events: none;
    user-select: none;
    animation: bannerFloat 6s ease-in-out infinite 0.8s;
}

/* ---------- Our Services ---------- */

.our-services {
    padding: 5rem 0 0;
    background: #fff;
}
.our-services-inner {
    position: relative;
}

.our-services .container {
    position: relative;
    z-index: 1;
}

.our-services-leaf {
    position: absolute;
    top: 1rem;
    right: 1%;
    width: clamp(90px, 12vw, 150px);
    z-index: 2;
    pointer-events: none;
    user-select: none;
    animation: bannerFloat 5.5s ease-in-out infinite 0.3s;
}

.our-services-intro {
    margin-bottom: 4.5rem;
}

.our-services-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    color: #171717;
    text-transform: capitalize;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.our-services-title span {
    color: var(--brand-navy);
}

.our-services-lead {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 18px;
    line-height: 23.35px;
    color: #555;
    margin: 0 auto;
    max-width: 918px;
    text-transform: capitalize;
}

.our-service-item {
    position: relative;
    height: 100%;
    padding: 15px 0 15px 18px;
}

.our-service-side {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: auto;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    transition: filter 0.25s ease;
}

.our-service-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
    transition: filter 0.25s ease;
}

.our-service-item:hover .our-service-side,
.our-service-item:hover .our-service-icon {
    filter: brightness(0) saturate(100%) invert(18%) sepia(96%) saturate(7482%) hue-rotate(356deg) brightness(101%) contrast(118%);
}

.our-service-card {
    position: relative;
    z-index: 1;
    height: 100%;
    background: #fff;
    border-radius: 1.15rem;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 1.35rem 1.25rem 1.5rem;
}

.our-service-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.our-service-name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16.29px;
    color: #171717;
    margin: 0;
    line-height: 1.25;
}

.our-service-text {
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.55;
    color: #252525;
    margin: 0;
}

.launch-approach-intro {
    /* max-width: 780px; */
    margin-bottom: 4rem;
}

.launch-approach-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.7rem, 3.2vw, 40px);
    color: #000;
    text-transform: uppercase;
    line-height: 100%;
    max-width: 554px;
    margin: 0 auto 20px;
}
.launch-approach-title span {
    color: var(--brand-navy);
}

.launch-approach-lead {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 18px;
    line-height: 23.35px;
    color: #171717;
    margin: 0 auto;
    max-width: 818.96px;
}

.launch-approach-swiper {
    position: relative;
    z-index: 1;
}

.launch-step-card {
    --step-border: #9a9a9a;
    position: relative;
    height: 100%;
    background: #252525;
    border-radius: 2.5rem;
    padding: 4.75rem 1.5rem 0.95rem;
    text-align: center;
    color: #fff;
    margin-top: 2.25rem;
}

.launch-step-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 146px;
    height: 146px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.launch-step-badge::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 28px solid var(--step-border);
    clip-path: inset(0 0 49.5% 0);
    box-sizing: border-box;
}

.launch-step-num {
    position: relative;
    z-index: 1;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #424242;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 57.22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    outline: 3px solid #252525;
}

.launch-step-card--orange {--step-border: #E45F00;}
.launch-step-card--red {--step-border: #BF0B30;}
.launch-step-card--navy { --step-border: #002768; }
.launch-step-card--gray {--step-border: #E6E6E6;}

.launch-step-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 20.82px;
    color: #fff;
    margin-bottom: 0.85rem;
}

.launch-step-text {
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.6;
    font-weight: 300;
    color: #fff;
    margin: 0;
}

@media (max-width: 991.98px) {
    .publish-services-book-icon {
        position: static;
        display: block;
        margin: 1.25rem auto 0;
        width: 90px;
    }

    .promo-cta-content {
        padding: 3rem 1.25rem 2rem;
    }

    .launch-approach-leaf {
        width: 120px;
        bottom: 1rem;
        opacity: 0.95;
    }

    .our-services-leaf {
        width: 100px;
        top: 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .publish-services-section {
        padding: 3.5rem 0 3rem;
    }

    .launch-approach-section {
        padding: 3.5rem 0 5rem;
    }

    .launch-approach-intro {
        margin-bottom: 3rem;
    }

    .launch-approach-leaf {
        width: 90px;
        right: 0.5%;
    }

    .our-services {
        padding: 3.5rem 0 4rem;
    }

    .our-services-leaf {
        width: 80px;
    }

    .our-service-item {
        padding-left: 14px;
    }
}

@media (max-width: 1199.98px) {
    .ideas-book-stack {
        width: 100px;
        left: 1%;
    }
}

@media (max-width: 767.98px) {
    .ideas-section {
        padding-top: 3.5rem;
    }

    .ideas-cards-swiper {
        margin-bottom: 3rem;
    }

    .ideas-book-stack {
        width: 70px;
        left: 0.5%;
        bottom: 65%;
    }

    .ideas-services-group {
        gap: 1.25rem;
        padding-right: 1.25rem;
        font-size: 0.85rem;
    }

    .ideas-star {
        width: 14px;
        height: 14px;
    }
}

/* ---------- Banner ---------- */

.banner-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 190px 0 145px;
    background: #ffffff;
}

.banner-section::before,
.banner-section::after {
    content: "";
    position: absolute;
    width: 342.94px;
    height: 342.94px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
}

.banner-section::before {
    right: -80px;
    bottom: 50px;
    background: rgba(0, 39, 104, 0.6);
}

.banner-section::after {
    right: 120px;
    bottom: 50px;
    background: rgba(191, 11, 48, 0.6);
}

.banner-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: url(../images/banner-bg.webp);
    background-size: auto, auto, auto, 22px 22px;
    background-position: center;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2rem, 4.2vw, 46px);
    line-height: 1.12;
    text-transform: uppercase;
    color: #0E0F10;
    max-width: 750px;
    margin-bottom: 1.25rem;
}
.banner-title span {
    color: var(--brand-navy);
}

.banner-desc {
    color: #6b7280;
    font-size: 13.34px;
    line-height: 1.7;
    max-width: 505px;
    margin-bottom: 1.5rem;
}

.btn-banner-cta {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.7rem 1.6rem;
    margin-bottom: 2rem;
}

.btn-banner-cta:hover,
.btn-banner-cta:focus {
    background: var(--brand-red-hover);
    border-color: var(--brand-red-hover);
    color: #fff;
}

.banner-split {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.banner-split-left {
    flex: 0 0 auto;
    width: min(160px, 32%);
    padding-right: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.banner-split-right {
    flex: 1;
    min-width: 0;
    padding-left: 1.75rem;
    border-left: 1px solid #030303;
}

.banner-stat-num {
    display: block;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.25rem, 4vw, 53.36px);
    color: #0E0F10;
    line-height: 1;
}

.banner-stat-label {
    display: block;
    color: #0E0F10;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    margin-top: 0.35rem;
}

.banner-proof-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.banner-avatars {
    height: 58px;
    width: auto;
    display: block;
}

.banner-watch {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--brand-red);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
}

.banner-watch:hover {
    color: var(--brand-red-hover);
}

.banner-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 37.06px;
    height: 37.06px;
    border-radius: 50%;
    border: 2px solid var(--brand-red);
    background: transparent;
    color: var(--brand-red);
    flex-shrink: 0;
}
span.banner-play svg {transform: scale(1.2) translate(3px, 0px);width: 16px;height: 20px;}

.banner-proof-text {
    color: #0E0F10;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    max-width: 370.35px;
    margin-bottom: 1.25rem;
}

.banner-tagline-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.banner-arrow {
    flex-shrink: 0;
    width: 56.30px;
    height: 56.41px;
}

.banner-tagline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(0.95rem, 1.6vw, 26.61px);
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 100%;
}

/* Form card */

.banner-form-card {
    position: relative;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 1.5rem;
    padding: 2rem 1.75rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    color: #fff;
}

.banner-form-card-border {
    position: relative;
    padding: 9.5px 18.13px;
    border: 1.81px solid #000000;
    border-radius: 27.09px;
    overflow: visible;
}

.banner-content .col-lg-5 {
    overflow: visible;
}

.banner-form-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48.18px;
    margin-bottom: 1.5rem;
    color: #fff;
}

.banner-form-title span {
    color: var(--brand-red);
}

.banner-form-lead {
    margin: -0.65rem 0 1.25rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
    line-height: 1.55;
}

.banner-input {
    background: transparent;
    border: 1.81px solid #FFFFFF;
    border-radius: 6.32px;
    color: #fff;
    padding: 17px 0 17px 20px;
    font-size: 13px;
    box-shadow: none;
}

.banner-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.banner-input:focus {
    background: transparent;
    border-color: #fff;
    color: #fff;
    box-shadow: 0 0 0 0.15rem rgba(255, 255, 255, 0.15);
}

select.banner-input {
    appearance: none;
    -webkit-appearance: none;
    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 fill='%23ffffff' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

select.banner-input option {
    color: #111;
    background: #fff;
}

.banner-check-label {
    color: #FFFFFF;
    font-size: 13.18px;
    line-height: 1.4;
}

.banner-form .form-check-input {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.6);
}

.banner-form .form-check-input:checked {
    background-color: var(--brand-red);
    border-color: var(--brand-red);
}

.btn-banner-submit {
    background: var(--brand-navy);
    border-color: var(--brand-navy);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 1.25rem;
}

.btn-banner-submit:hover,
.btn-banner-submit:focus {
    background: #0a1238;
    border-color: #0a1238;
    color: #fff;
}

/* Decorative 3D assets (relative to form card) */

.banner-deco {
    position: absolute;
    z-index: 4;
    pointer-events: none;
    user-select: none;
}

.banner-deco-book {
    width: clamp(90px, 22%, 140px);
    top: -30px;
    left: -50px;
    animation: bannerFloat 5s ease-in-out infinite;
}

.banner-deco-sphere {
    width: clamp(70px, 28%, 123.62px);
    top: -10%;
    right: -126px;
    animation: bannerFloat 6s ease-in-out infinite 0.6s;
}

.banner-deco-stack {
    width: clamp(100px, 36%, 160px);
    bottom: -70px;
    right: -120px;
    animation: bannerFloat 5.5s ease-in-out infinite 1s;
}

@keyframes bannerFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@media (max-width: 1399.98px) {
    .feature-card{
        padding: 0 13px 60px;
    }
    .publish-services-lead-wrap {
        max-width: 950px;
    }
    .launch-approach-leaf {
        bottom: -60px;
    }
}
@media (max-width: 1199.98px) {
    .banner-deco-sphere {
        right: -70px;
    }
    .banner-form-title {
        font-size: 35px;
    }
    
    .banner-title {
        font-size: 42px;
    }
    
    .feature-card {
        padding: 0 13px 40px;
    }
    
    .feature-card-accent {
        display: none;
    }
    
    .publish-services-lead-wrap {
        max-width: 800px;
    }
    
    .launch-approach-swiper:not(.swiper-initialized) .swiper-wrapper {
        gap: 80px 1.5rem;
    }
    .feature-card-body {
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        padding: 15px 25px 20px;
    }
    
    .feature-card-text {
        font-size: 14px;
        line-height: 22px;
    }
    .site-footer-links a {
        font-size: 14px !important;
    }
    
    .site-footer-contact li {
        font-size: 14px !important;
    }
}

@media (max-width: 991.98px) {
    .site-logo {
        height: 100px;
    }
    
    .site-navbar .navbar-brand {
        margin-right: 0.5rem;
        max-width: calc(100% - 150px);
    }

    .site-navbar .navbar-brand .site-logo {
        max-width: 100%;
        height: auto;
        max-height: 78px;
    }

    .site-navbar .nav-link {
        padding: 0.65rem 0 !important;
    }

    .banner-section {
        padding: 10rem 0 3rem;
    }

    .banner-title {
        max-width: none;
    }

    .banner-form-card-border {
        margin: 2rem 1rem 2.5rem;
    }

    .banner-deco-book {
        width: 80px;
        top: -6%;
        left: -8%;
    }

    .banner-deco-sphere {
        width: 70px;
        top: -8%;
        right: -6%;
    }

    .banner-deco-stack {
        width: 95px;
        bottom: -6%;
        right: -6%;
    }
    .banner-desc {
        text-align: center;
        max-width: 100%;
    }

    .banner-copy {
        text-align: center;
    }
    
    .banner-tagline {
        text-align: start;
        line-height: 25px;
    }
    
    .banner-split {align-items: center;}

    .publish-services-section .container{
        padding-bottom:60px;
    }
    .publish-service-inner{
        padding-bottom: 40px;
    }
    .faq-item .accordion-body {
        padding: 15px 1.25rem 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .banner-split {
        flex-direction: column;
        gap: 1.75rem;
    }

    .banner-split-left {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem 2.5rem;
        padding-right: 0;
    }

    .banner-split-right {
        padding-left: 0;
        border-left: none;
        border-top: 1.5px solid #111;
        padding-top: 1.75rem;
    }
    .banner-proof-top {
        justify-content: center;
    }
    
    .banner-tagline-row {
        justify-content: center;
    }
    
    .banner-tagline {
        line-height: 18px;
    }
    
    .banner-arrow {
        width: 45px;
        height: 100%;
    }
    
    .promo-cta-content {
        padding: 50px 50px 30px;
    }
    
    .launch-step-num {
        font-size: 40px;
    }
    
    a.site-footer-brand {
        display: flex !important;
        justify-content: center;
    }
    
    .site-footer-about {
        text-align: center;
    }
    
    
    .site-footer-copy {
        font-size: 16px !important;
    }
    .launch-step-card {
        margin-top: 90px;
    }
}

@media (max-width: 575.98px) {
    .banner-avatars {
        height: 52px;
    }

    .banner-arrow {
        width: 40px;
        height: 40px;
    }
}

/* ---------- FAQ ---------- */

.faq-section {
    padding: 5rem 0 0;
    background: #fff;
}

.faq-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.85rem, 3.2vw, 45px);
    color: #171717;
    line-height: 1.15;
    margin-bottom: 1.1rem;
}

.faq-lead {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.65;
    color: #2B2B2B;
    margin-bottom: 2rem;
}



.faq-img {
    width: 100%;
    height: auto;
    display: block;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.faq-item {
    background: transparent;
    border: 0;
    border-radius: 14px;
    overflow: hidden;
}

.faq-item .accordion-button {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    background: #1a1a1a;
    box-shadow: none;
    padding: 1.05rem 1.25rem;
    border-radius: 14px !important;
    gap: 1rem;
}

.faq-item .accordion-button:not(.collapsed) {
    background: var(--brand-navy);
    color: #fff;
    border-radius: 14px 14px 0 0 !important;
}

.faq-item .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-item .accordion-button::after {
    flex-shrink: 0;
    width: 0.7rem;
    height: 0.7rem;
    margin-left: auto;
    background-image: none;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.faq-item .accordion-button:not(.collapsed)::after {
    transform: rotate(-135deg);
    background-image: none;
}

.faq-item .accordion-collapse {
    background: var(--brand-navy);
    border-radius: 0 0 14px 14px;
}

.faq-item .accordion-body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    padding: 0 1.25rem 1.2rem;
}

.faq-item .accordion-button.collapsed + .accordion-collapse {
    background: #1a1a1a;
}

@media (max-width: 991.98px) {
    .faq-visual {
        max-width: 360px;
        margin: 0 auto;
    }

    .faq-lead {
        max-width: none;
    }

    .faq-intro {
        text-align: center;
        margin-bottom: 1rem;
    }
}

/* ---------- Site Footer ---------- */

.site-footer {
    background: #fff;
    border-top: 2px solid var(--brand-navy);
    margin-top: auto;
}

.site-footer-top {
    padding: 3.25rem 0 2.75rem;
}

.site-footer-logo {
    height: 90px;
    width: auto;
    display: block;
    margin-bottom: 10px;
}

.site-footer-about {
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.65;
    color: #555;
    margin: 0;
    max-width: 34ch;
}

.site-footer-heading {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 22px;
    color: #000000;
    margin: 0 0 1rem;
}

.site-footer-links {
    margin: 0;
    padding: 0;
}

.site-footer-links li + li {
    margin-top: 0.55rem;
}

.site-footer-links a {
    font-family: var(--font-body);
    font-size: 18px;
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer-links a:hover {
    color: var(--brand-red);
}

.site-footer-contact {
    margin: 0;
    padding: 0;
}

.site-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-family: var(--font-body);
    font-size: 18px;
    color: #333;
    line-height: 1.4;
}

.site-footer-contact li + li {
    margin-top: 0.75rem;
}

.site-footer-contact a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer-contact a:hover {
    color: var(--brand-red);
}

.site-footer-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: #111;
    font-size: 0.9rem;
}

.site-footer-bottom {
    background: var(--brand-red);
    padding: 18px 0;
}

.site-footer-copy {
    font-family: var(--font-body);
    font-size: 20px;
    color: #fff;
    text-align: center;
}

@media (max-width: 991.98px) {
    .site-footer-about {
        max-width: none;
    }
}

@media (max-width: 575.98px) {
    .site-footer-top {
        padding: 2.5rem 0 2rem;
    }
}

/* ---------- Mobile sticky CTA bar ---------- */

.mobile-cta-bar {
    display: none;
}

@media (max-width: 991.98px) {
    .mobile-cta-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1040;
        display: flex;
        align-items: stretch;
        width: 100%;
        min-height: 54px;
        box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.18);
    }

    .mobile-cta-bar__btn {
        flex: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.55rem;
        padding: 0.85rem 0.75rem;
        font-family: var(--font-body);
        font-size: 0.95rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        text-decoration: none;
        color: #fff;
        line-height: 1;
        border: 0;
    }

    .mobile-cta-bar__btn i {
        font-size: 1rem;
    }

    .mobile-cta-bar__btn--call {
        background: var(--brand-navy);
    }

    .mobile-cta-bar__btn--signup {
        background: var(--brand-red);
    }

    .mobile-cta-bar__or {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #fff;
        color: #111;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-body);
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        z-index: 1;
        pointer-events: none;
    }

    body {
        padding-bottom: 54px;
    }
}


/* ---------- Services page banner ---------- */

.services-banner {
    position: relative;
    overflow: hidden;
    padding: 10rem 0 5rem;
    background: #ffffff;
}

.services-banner-content {
    position: relative;
    z-index: 2;
}

.services-banner-title {max-width: 100%;text-transform: capitalize;}

.services-banner-desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 1.75rem;
    max-width: 680px;
}

.services-banner-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.4rem;
    border: 0;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.12);
}

.btn-services-chat {
    background: var(--brand-navy);
    color: #fff;
}

.btn-services-chat:hover,
.btn-services-chat:focus {
    background: #001a4d;
    color: #fff;
}

.btn-services-call {
    background: var(--brand-red);
    color: #fff;
}

.btn-services-call:hover,
.btn-services-call:focus {
    background: var(--brand-red-hover);
    color: #fff;
}

.services-form-wrap {
    position: relative;
    padding: 0;
}

.services-form-card {
    position: relative;
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(0, 39, 104, 0.08);
    box-shadow:
        0 24px 50px rgba(15, 23, 42, 0.12),
        0 2px 0 rgba(255, 255, 255, 0.8) inset;
}

.services-form-topbar {
    height: 12px;
    background: linear-gradient(90deg, var(--brand-navy) 0%, #12408a 48%, var(--brand-red) 100%);
}

.services-form-body {
    padding: 1.75rem 1.7rem 1.9rem;
}

.services-form-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 auto 0.75rem;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    background: rgba(0, 39, 104, 0.08);
    color: var(--brand-navy);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    width: fit-content;
}

.services-form-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.45rem, 2.3vw, 1.9rem);
    line-height: 1.15;
    text-transform: uppercase;
    color: #0E0F10;
    text-align: center;
    margin-bottom: 0.55rem;
}

.services-form-title span {
    color: var(--brand-navy);
}

.services-form-subtitle {
    font-family: var(--font-body);
    font-size: 0.86rem;
    line-height: 1.55;
    color: #6b7280;
    text-align: center;
    margin: 0 0 1.35rem;
}

.services-form-field {
    position: relative;
}

.services-form-field-icon {
    position: absolute;
    left: 0.95rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa3af;
    font-size: 0.85rem;
    pointer-events: none;
    z-index: 2;
    transition: color 0.2s ease;
}

.services-form-field-icon--top {
    top: 1.05rem;
    transform: none;
}

.services-form-field:focus-within .services-form-field-icon {
    color: var(--brand-navy);
}

.services-input {
    border: 1.5px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 0.9rem 1rem 0.9rem 2.55rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: #222;
    background: #f8fafc;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.services-input::placeholder {
    color: #94a3b8;
}

.services-input:hover {
    border-color: #cbd5e1;
    background: #fff;
}

.services-input:focus {
    background: #fff;
    border-color: var(--brand-navy);
    box-shadow: 0 0 0 0.2rem rgba(0, 39, 104, 0.12);
}

.services-form textarea.services-input {
    min-height: 122px;
    resize: vertical;
    padding-top: 0.95rem;
}

select.services-input,
select.services-contact-input,
select.lead-modal-input {
    appearance: none;
    -webkit-appearance: none;
    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 fill='%2394a3b8' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 2.4rem;
    cursor: pointer;
}

select.services-contact-input {
    padding-left: 1rem;
}

.btn-services-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    background: linear-gradient(135deg, var(--brand-navy) 0%, #0a3178 100%);
    border: 0;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
    box-shadow: 0 10px 22px rgba(0, 39, 104, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-services-submit:hover,
.btn-services-submit:focus {
    background: linear-gradient(135deg, var(--brand-red) 0%, #9a091f 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(191, 11, 48, 0.3);
}

@media (max-width: 991.98px) {
    .services-banner {
        padding: 10rem 0 3.5rem;
    }

    .services-banner-title {
        max-width: none;
    }

    .services-banner-desc {
        max-width: none;
    }
}

@media (max-width: 575.98px) {
    .services-banner-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .btn-services-submit {
        width: 100%;
    }
}

/* ---------- Services solutions ---------- */

.services-solutions {
    padding: 4.5rem 0;
    background: #fff;
}

.services-solutions-title {
    max-width: 100%;
    margin-bottom: 1.35rem;
    text-transform: capitalize;
}

.services-solutions-list {
    list-style: disc;
    padding-left: 1.15rem;
    margin: 0;
}

.services-solutions-list li {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: #222;
    margin-bottom: 0.65rem;
}

.services-solutions-list li:last-child {
    margin-bottom: 0;
}

.services-solutions-list li::marker {
    color: #111;
}

.services-solutions-list strong {
    font-weight: 700;
    color: #111;
}

.services-solutions-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.65;
    color: #222;
    margin-bottom: 0.85rem;
}

.services-solutions-text:last-child {
    margin-bottom: 0;
}

.services-solutions-below {
    margin-top: 1.75rem;
    max-width: 920px;
}

.services-solutions-media {
    line-height: 0;
}

.services-solutions-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1.5rem;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .services-solutions {
        padding: 3.25rem 0;
    }

    .services-solutions-title {
        max-width: none;
        font-size: 40px;
    }

    .services-solutions-below {
        margin-top: 1.35rem;
        max-width: none;
    }
}

/* ---------- Services craft ---------- */

.services-craft {
    padding: 5rem 0;
    background: linear-gradient(45deg, var(--brand-navy), var(--brand-red));
}

.services-craft-media {
    line-height: 0;
}

.services-craft-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1.5rem;
    object-fit: cover;
}

.services-craft-title {
    max-width: 100%;
    margin-bottom: 1.35rem;
    color: #fff;
    text-transform: capitalize;
}

.services-craft .banner-title,
.services-craft .banner-title span {
    color: #fff;
}

.services-craft-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin: 0;
}

@media (max-width: 991.98px) {
    .services-craft {
        padding: 3.5rem 0;
    }

    .services-craft-title {
        max-width: none;
    }
}

/* ---------- Services expertise ---------- */

.services-expertise {
    padding: 5.75rem 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 39, 104, 0.06), transparent 70%),
        #f7f9fc;
}

.services-expertise-intro {
    max-width: 680px;
    margin-bottom: 3.5rem;
}

.services-expertise-title {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    color: #0E0F10;
    margin-bottom: 1rem;
}

.services-expertise .banner-title {
    color: #0E0F10;
    text-transform: capitalize;
}

.services-expertise .banner-title span {
    color: var(--brand-navy);
}

.services-expertise-lead {
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.75;
    color: #5f6b7a;
    margin: 0;
}

.services-expertise-swiper {
    margin-bottom: 2.5rem;
    padding-bottom: 0;
}

.services-expertise-card {
    height: 100%;
    text-align: center;
    background: #fff;
    border: 1px solid rgba(0, 39, 104, 0.08);
    border-radius: 1.35rem;
    padding: 2.25rem 1.6rem 2rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.services-expertise-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 39, 104, 0.2);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
}

.services-expertise-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brand-navy);
    color: #fff;
    font-size: 1.45rem;
    box-shadow: 0 10px 22px rgba(0, 39, 104, 0.28);
    transition: background 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.services-expertise-card.is-accent .services-expertise-icon {
    background: var(--brand-red);
    box-shadow: 0 10px 22px rgba(191, 11, 48, 0.28);
}

.services-expertise-card:hover .services-expertise-icon {
    transform: scale(1.06);
}

.services-expertise-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.12rem;
    color: var(--brand-navy);
    margin: 0 0 0.85rem;
    line-height: 1.3;
}

.services-expertise-card-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.7;
    color: #626b78;
    margin: 0 auto;
    max-width: 32ch;
}

.services-expertise-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.9rem;
    background: #fff;
    border: 1px solid rgba(0, 39, 104, 0.08);
    border-radius: 999px;
    padding: 0.95rem 1.25rem;
    max-width: 650px;
    margin: 0 auto;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.services-expertise-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.78rem 1.35rem;
    border: 0;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.08);
}

.btn-services-expert {
    background: #fff;
    color: #111;
    border: 1.5px solid #111 !important;
    box-shadow: none !important;
}

.btn-services-expert:hover,
.btn-services-expert:focus {
    background: #111;
    color: #fff;
}

@media (min-width: 768px) {
    .services-expertise-swiper:not(.swiper-initialized) .swiper-wrapper {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        transform: none !important;
    }

    .services-expertise-swiper:not(.swiper-initialized) .swiper-slide {
        width: calc((100% - 1.5rem) / 2) !important;
        max-width: calc((100% - 1.5rem) / 2);
        margin: 0 !important;
        height: auto;
    }
}

@media (min-width: 992px) {
    .services-expertise-swiper:not(.swiper-initialized) .swiper-slide {
        width: calc((100% - 3rem) / 3) !important;
        max-width: calc((100% - 3rem) / 3);
    }
}

@media (max-width: 991.98px) {
    .services-expertise {
        padding: 3.75rem 0;
    }

    .services-expertise-cta {
        border-radius: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .services-expertise-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ---------- Services limelight / process ---------- */

.services-limelight {
    position: relative;
    overflow: hidden;
    padding: 5.75rem 0;
    background:
        radial-gradient(ellipse 55% 70% at 0% 50%, rgba(0, 39, 104, 0.95), transparent 60%),
        radial-gradient(ellipse 55% 70% at 100% 50%, rgba(191, 11, 48, 0.9), transparent 60%),
        linear-gradient(115deg, #00143f 0%, var(--brand-navy) 38%, #5a0a22 72%, var(--brand-red) 100%);
}

.services-limelight::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 35%),
        radial-gradient(circle at 80% 75%, rgba(255, 255, 255, 0.06), transparent 30%);
    pointer-events: none;
}

.services-limelight .container {
    position: relative;
    z-index: 1;
}

.services-limelight-intro {
    max-width: 700px;
    margin-bottom: 3.5rem;
}

.services-limelight-title {
    max-width: none;
    margin: 0 auto 1.1rem;
    color: #fff;
    text-transform: capitalize;
}

.services-limelight .banner-title,
.services-limelight .banner-title span {
    color: #fff;
}

.services-limelight-lead {
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.84);
    margin: 0;
}

.services-limelight-swiper {
    padding-bottom: 0;
}

.services-limelight-card {
    position: relative;
    height: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 1.35rem;
    padding: 2.35rem 1.4rem 2rem;
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.services-limelight-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.services-limelight-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
}

.services-limelight-card:hover::after {
    opacity: 1;
}

.services-limelight-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.4rem;
    height: 1.55rem;
    padding: 0 0.55rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.services-limelight-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.4rem;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.28s ease, background 0.28s ease;
}

.services-limelight-card:hover .services-limelight-icon {
    transform: scale(1.07);
    background: rgba(255, 255, 255, 0.22);
}

.services-limelight-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.12rem;
    color: #fff;
    margin: 0 0 0.85rem;
    line-height: 1.3;
}

.services-limelight-card-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto;
    max-width: 30ch;
}

@media (max-width: 991.98px) {
    .services-limelight {
        padding: 3.75rem 0;
    }
}

/* ---------- Mobile card section sliders ---------- */

.section-cards-swiper .swiper-slide > * {
    height: 100%;
}

.section-cards-swiper .swiper-pagination {
    display: none;
}

@media (min-width: 768px) {
    .section-cards-swiper:not(.swiper-initialized) .swiper-wrapper {
        display: grid;
        gap: 1.5rem;
        transform: none !important;
    }

    .section-cards-swiper:not(.swiper-initialized) .swiper-slide {
        width: auto !important;
        height: auto;
        margin: 0 !important;
    }

    .ideas-cards-swiper:not(.swiper-initialized) .swiper-wrapper,
    .launch-approach-swiper:not(.swiper-initialized) .swiper-wrapper,
    .our-services-swiper:not(.swiper-initialized) .swiper-wrapper,
    .publish-services-swiper:not(.swiper-initialized) .swiper-wrapper,
    .services-expertise-swiper:not(.swiper-initialized) .swiper-wrapper,
    .services-limelight-swiper:not(.swiper-initialized) .swiper-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .publish-services-swiper:not(.swiper-initialized) .swiper-wrapper,
    .services-expertise-swiper:not(.swiper-initialized) .swiper-wrapper {
        grid-template-columns: repeat(3, 1fr);
        padding: 20px 0;
    }

    .services-limelight-swiper:not(.swiper-initialized) .swiper-wrapper {
        grid-template-columns: repeat(4, 1fr);
        padding: 20px 0;
    }
}

@media (min-width: 1200px) {
    .ideas-cards-swiper:not(.swiper-initialized) .swiper-wrapper,
    .launch-approach-swiper:not(.swiper-initialized) .swiper-wrapper,
    .our-services-swiper:not(.swiper-initialized) .swiper-wrapper {
        padding: 50px 0;
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767.98px) {
    .section-cards-swiper {
        overflow: hidden;
        padding-bottom: 2.5rem;
    }

    .section-cards-swiper .swiper-pagination {
        display: block;
        bottom: 0;
        position: absolute;
    }

    .section-cards-swiper .swiper-pagination-bullet {
        background: #c4c4c4;
        opacity: 1;
    }

    .section-cards-swiper .swiper-pagination-bullet-active {
        background: var(--brand-red);
    }

    .section-cards-swiper .our-service-item {
        height: 100%;
    }

    .services-expertise-swiper .swiper-pagination-bullet {
        background: #c4c4c4;
    }

    .services-expertise-swiper .swiper-pagination-bullet-active {
        background: var(--brand-navy);
    }

    .services-limelight-swiper .swiper-pagination-bullet {
        background: rgba(255, 255, 255, 0.35);
    }

    .services-limelight-swiper .swiper-pagination-bullet-active {
        background: #fff;
    }
}

/* ---------- Services contact CTA ---------- */

.services-contact {
    padding: 5.5rem 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(0, 39, 104, 0.05), transparent 70%),
        #fff;
}

.services-contact-panel {
    overflow: hidden;
    border-radius: 1.75rem;
    border: 1px solid rgba(0, 39, 104, 0.08);
    box-shadow:
        0 28px 60px rgba(15, 23, 42, 0.1),
        0 2px 0 rgba(255, 255, 255, 0.8) inset;
    background: #eef1f5;
}

.services-contact-media {
    position: relative;
    height: 100%;
    min-height: 480px;
    line-height: 0;
}

.services-contact-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 70%, rgba(238, 241, 245, 0.35));
    pointer-events: none;
}

.services-contact-img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    display: block;
}

.services-contact-content {
    padding: 2.75rem 2.35rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-contact-eyebrow {
    display: flex;
    width: fit-content;
    margin: 0 0 0.85rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: rgba(0, 39, 104, 0.09);
    color: var(--brand-navy);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.services-contact-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.7rem, 2.8vw, 2.35rem);
    line-height: 1.15;
    text-transform: uppercase;
    color: #0E0F10;
    margin-bottom: 0.75rem;
}

.services-contact-title span {
    color: var(--brand-navy);
}

.services-contact-lead {
    margin: 0 0 1.35rem;
    color: #556;
    font-size: 0.95rem;
    line-height: 1.6;
}

.services-contact-input {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 0.85rem;
    background: #fff;
    padding: 0.95rem 1.05rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: #222;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.services-contact-input::placeholder {
    color: #9aa3af;
}

.services-contact-input:hover {
    border-color: rgba(0, 39, 104, 0.18);
}

.services-contact-input:focus {
    border-color: var(--brand-navy);
    box-shadow: 0 0 0 0.2rem rgba(0, 39, 104, 0.12);
}

.services-contact-form textarea.services-contact-input {
    min-height: 140px;
    resize: vertical;
}

.btn-services-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #fff;
    color: #111;
    border: 2px solid #111;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.78rem 1.9rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-services-contact-submit:hover,
.btn-services-contact-submit:focus {
    background: #111;
    color: #fff;
    border-color: #111;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
}

.services-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: center;
}

.services-contact-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.8rem 1.3rem;
    border: 0;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services-contact-actions .btn:hover,
.services-contact-actions .btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.14);
}

@media (max-width: 991.98px) {
    .services-contact {
        padding: 3.75rem 0;
    }

    .services-contact-media,
    .services-contact-img {
        min-height: 300px;
    }

    .services-contact-media::after {
        background: linear-gradient(180deg, transparent 65%, rgba(238, 241, 245, 0.85));
    }

    .services-contact-content {
        padding: 2rem 1.4rem 2.25rem;
    }

    .services-contact-actions {
        justify-content: center;
    }
    .services-banner-copy {
        text-align: center;
    }
    
    .services-banner-actions {
        justify-content: center;
    }
    
    .services-solutions-copy {
        text-align: center;
    }

    .services-solutions-below {
        text-align: center;
    }
    
    .services-solutions-list {
        text-align: start;
    }
    
    .services-craft-copy {
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .services-contact-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .btn-services-contact-submit {
        width: 100%;
    }
    .services-banner-title {
        font-size: 30px;
    }
    
    .services-solutions-title {
        font-size: 28px;
    }
    
    .services-craft-title {
        font-size: 28px;
    }
    
    .services-expertise .banner-title {
        font-size: 28px;
    }
    
    .services-limelight-title {
        font-size: 28px;
    }
    
    .services-contact-title {
        text-align: center;
    }

    .services-contact-lead {
        text-align: center;
    }
    
    .services-contact-eyebrow {
        width: 100%;
        justify-content: center;
    }
}

/* ---------- Shared inner pages ---------- */

.page-hero {
    position: relative;
    padding: 9.5rem 0 4.5rem;
    overflow: hidden;
}

.page-hero--compact {
    padding-bottom: 3.25rem;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-eyebrow {
    display: inline-flex;
    margin: 0 0 0.85rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: rgba(0, 39, 104, 0.1);
    color: var(--brand-navy);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.page-hero-title {
    margin: 0 auto 0.85rem;
    text-transform: capitalize;
}

.page-hero-desc {
    max-width: 40rem;
    margin-bottom: 0;
    color: #444;
    font-size: 1.02rem;
    line-height: 1.65;
}

.about-story,
.about-values,
.blogs-section,
.reviews-section,
.contact-info-section,
.legal-section {
    padding: 5rem 0;
}

.about-story-img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    border-radius: 1.25rem;
    display: block;
}

.about-section-title {
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.about-story-copy p {
    color: #445;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-values {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 55% 50% at 15% 20%, rgba(0, 39, 104, 0.07), transparent 60%),
        radial-gradient(ellipse 45% 45% at 90% 80%, rgba(191, 11, 48, 0.06), transparent 55%),
        #f5f6f8;
}

.about-values-intro {
    max-width: 36rem;
    margin-bottom: 2.75rem;
}

.about-values-eyebrow {
    display: inline-flex;
    margin: 0 0 0.75rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: rgba(0, 39, 104, 0.1);
    color: var(--brand-navy);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-values-intro p {
    color: #556;
    margin-bottom: 0;
    line-height: 1.65;
}

.about-value-card {
    position: relative;
    height: 100%;
    padding: 2rem 1.5rem 1.85rem;
    border-radius: 1.35rem;
    background: #fff;
    border: 1px solid rgba(0, 39, 104, 0.08);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.about-value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-navy), rgba(0, 39, 104, 0.35));
}

.about-value-card.is-accent::before {
    background: linear-gradient(90deg, var(--brand-red), rgba(191, 11, 48, 0.4));
}

.about-value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 39, 104, 0.18);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

.about-value-num {
    position: absolute;
    top: 1.15rem;
    right: 1.2rem;
    font-family: var(--font-display);
    font-size: 1.65rem;
    line-height: 1;
    color: rgba(0, 39, 104, 0.1);
}

.about-value-card.is-accent .about-value-num {
    color: rgba(191, 11, 48, 0.12);
}

.about-value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.65rem;
    height: 3.65rem;
    margin-bottom: 1.25rem;
    border-radius: 50%;
    background: var(--brand-navy);
    color: #fff;
    font-size: 1.25rem;
    box-shadow: 0 10px 22px rgba(0, 39, 104, 0.28);
    transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.about-value-card.is-accent .about-value-icon {
    background: var(--brand-red);
    box-shadow: 0 10px 22px rgba(191, 11, 48, 0.28);
}

.about-value-card:hover .about-value-icon {
    transform: scale(1.06);
}

.about-value-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    color: #111;
}

.about-value-card p {
    margin: 0;
    color: #556;
    line-height: 1.7;
    font-size: 0.95rem;
}

.about-cta {
    padding: 5rem 0 5rem;
}

.about-cta-panel {
    position: relative;
    overflow: hidden;
    padding: 0;
    border-radius: 1.5rem;
    border: 1px solid rgba(0, 39, 104, 0.12);
    background:
        linear-gradient(105deg, rgba(0, 39, 104, 0.12) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(191, 11, 48, 0.1) 100%);
    box-shadow:
        0 20px 48px rgba(15, 23, 42, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.about-cta-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-navy), var(--brand-red));
}

.about-cta-glow {
    position: absolute;
    right: -4rem;
    bottom: -5rem;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(191, 11, 48, 0.14), transparent 68%);
    pointer-events: none;
}

.about-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem 2.35rem;
}

.about-cta-copy {
    max-width: 34rem;
}

.about-cta-eyebrow {
    display: inline-flex;
    margin: 0 0 0.7rem;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    background: rgba(0, 39, 104, 0.1);
    color: var(--brand-navy);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-cta-title {
    margin-bottom: 0.65rem;
    text-align: left;
}

.about-cta-desc {
    margin: 0;
    color: #445;
    font-size: 1rem;
    line-height: 1.65;
}

.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    flex-shrink: 0;
}

.about-cta-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.35rem;
    font-size: 0.95rem;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-cta-actions .btn:hover,
.about-cta-actions .btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.14);
}

.blog-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 1.15rem;
    background: #fff;
    border: 1px solid rgba(0, 39, 104, 0.08);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.blog-card-media {
    position: relative;
    line-height: 0;
}

.blog-card-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.blog-card-tag {
    position: absolute;
    left: 0.9rem;
    bottom: 0.9rem;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    background: rgba(0, 39, 104, 0.92);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.blog-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.35rem 1.25rem 1.45rem;
}

.blog-card-date {
    display: block;
    margin-bottom: 0.45rem;
    color: #889;
    font-size: 0.8rem;
}

.blog-card-title {
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.35;
    color: #111;
    margin-bottom: 0.65rem;
}

.blog-card-excerpt {
    flex: 1;
    color: #556;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--brand-navy);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
}

.blog-card-link:hover {
    color: var(--brand-red);
}

.reviews-section {
    background:
        radial-gradient(ellipse 50% 45% at 50% 0%, rgba(0, 39, 104, 0.05), transparent 65%),
        #fff;
}

.reviews-highlight {
    max-width: 34rem;
    margin-bottom: 3rem;
}

.reviews-highlight-avatars {
    max-width: 170px;
    height: auto;
    margin-bottom: 0.95rem;
}

.reviews-highlight-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(230, 161, 0, 0.12);
    color: #b87a00;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
}

.reviews-highlight-rating i {
    color: #e6a100;
    font-size: 0.72rem;
}

.reviews-highlight-text {
    margin: 0;
    color: #445;
    font-size: 1.05rem;
    line-height: 1.6;
}

.review-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.75rem 1.45rem 1.5rem;
    border-radius: 1.35rem;
    background: #fff;
    border: 1px solid rgba(0, 39, 104, 0.08);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.review-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-navy), rgba(0, 39, 104, 0.35));
}

.review-card.is-accent::before {
    background: linear-gradient(90deg, var(--brand-red), rgba(191, 11, 48, 0.4));
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 39, 104, 0.16);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

.review-card-quote-icon {
    position: absolute;
    top: 1.2rem;
    right: 1.25rem;
    color: rgba(0, 39, 104, 0.1);
    font-size: 1.5rem;
    line-height: 1;
}

.review-card.is-accent .review-card-quote-icon {
    color: rgba(191, 11, 48, 0.12);
}

.review-card-stars {
    display: flex;
    gap: 0.22rem;
    margin-bottom: 1rem;
    color: #e6a100;
    font-size: 0.88rem;
}

.review-card-quote {
    flex: 1;
    color: #333;
    line-height: 1.7;
    font-size: 0.96rem;
    margin-bottom: 1.35rem;
}

.review-card-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.review-card-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background: var(--brand-navy);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.review-card.is-accent .review-card-avatar {
    background: var(--brand-red);
}

.review-card-author-meta {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    min-width: 0;
}

.review-card-author-meta strong {
    color: #111;
    font-family: var(--font-heading);
    font-size: 0.98rem;
}

.review-card-author-meta span {
    color: #778;
    font-size: 0.84rem;
}

.reviews-section-cta {
    margin-top: 3rem;
}

.contact-info-section {
    padding-bottom: 1.5rem;
}

.contact-info-card {
    height: 100%;
    text-align: center;
    padding: 1.6rem 1.2rem;
    border-radius: 1.15rem;
    background: #f7f8fa;
    border: 1px solid rgba(0, 39, 104, 0.08);
}

.contact-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 0.85rem;
    border-radius: 999px;
    background: rgba(191, 11, 48, 0.1);
    color: var(--brand-red);
}

.contact-info-card h2 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.contact-info-card a,
.contact-info-card span {
    color: #445;
    text-decoration: none;
    font-size: 0.95rem;
}

.contact-info-card a:hover {
    color: var(--brand-navy);
}

.legal-content {
    max-width: 48rem;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin: 2rem 0 0.75rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    color: #445;
    line-height: 1.7;
    font-size: 0.98rem;
}

.legal-content ul {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}

.legal-content a {
    color: var(--brand-navy);
    font-weight: 600;
}

.legal-content a:hover {
    color: var(--brand-red);
}

@media (max-width: 991.98px) {
    .page-hero {
        padding: 8rem 0 3.25rem;
    }

    .about-story,
    .about-values,
    .blogs-section,
    .reviews-section,
    .legal-section {
        padding: 3.75rem 0;
    }

    .about-cta {
        padding-bottom: 3.75rem;
    }

    .about-cta-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2.15rem 1.4rem;
        gap: 1.5rem;
    }

    .about-cta-copy {
        max-width: 100%;
    }

    .about-cta-title {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .about-cta-actions {
        justify-content: center;
    }

    .about-story-img {
        min-height: 280px;
    }
}

@media (max-width: 575.98px) {
    .page-hero-title {
        font-size: 30px;
    }
    
        .banner-title{
        font-size: 30px;
    }

    .about-section-title {
        font-size: 28px;
    }

    .about-cta-actions {
        width: 100%;
    }

    .about-cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}



/* ---------- Lead modal ---------- */

.lead-modal .modal-dialog {
    max-width: 480px;
}

.lead-modal .modal-backdrop.show {
    opacity: 0.55;
}

.lead-modal-content {
    position: relative;
    border: 1px solid rgba(0, 39, 104, 0.08);
    border-radius: 1.5rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 45% at 100% 0%, rgba(191, 11, 48, 0.06), transparent 55%),
        radial-gradient(ellipse 60% 50% at 0% 100%, rgba(0, 39, 104, 0.07), transparent 55%),
        #fff;
    box-shadow:
        0 32px 64px rgba(15, 23, 42, 0.22),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.lead-modal-topbar {
    height: 5px;
    background: linear-gradient(90deg, var(--brand-navy) 0%, #1a4a9e 45%, var(--brand-red) 100%);
}

.lead-modal-glow {
    position: absolute;
    top: -3rem;
    right: -2.5rem;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 39, 104, 0.1), transparent 70%);
    pointer-events: none;
}

.lead-modal-close {
    position: absolute;
    top: 0.95rem;
    right: 0.95rem;
    z-index: 5;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.08);
    color: #111;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    opacity: 1;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lead-modal-close:hover,
.lead-modal-close:focus {
    background: rgba(191, 11, 48, 0.12);
    color: var(--brand-red);
    transform: rotate(90deg);
    outline: none;
}

.lead-modal .modal-header {
    position: relative;
    z-index: 1;
    padding: 1.6rem 1.65rem 0.85rem;
    text-align: center;
}

.lead-modal-eyebrow {
    display: inline-flex;
    margin: 0 0 0.75rem;
    padding: 0.32rem 0.8rem;
    border-radius: 999px;
    background: rgba(0, 39, 104, 0.1);
    color: var(--brand-navy);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.lead-modal-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    line-height: 1.25;
    color: #111;
    text-transform: capitalize;
    text-align: center;
    margin: 0 auto 0.55rem;
    width: 100%;
}

.lead-modal-title span {
    color: var(--brand-navy);
}

.lead-modal-subtitle {
    margin: 0 auto;
    color: #667;
    font-size: 0.93rem;
    line-height: 1.55;
    text-align: center;
    max-width: 22rem;
}

.lead-modal .modal-body {
    position: relative;
    z-index: 1;
    padding: 0.35rem 1.65rem 1.7rem;
}

.lead-modal-field {
    position: relative;
}

.lead-modal-field-icon {
    position: absolute;
    left: 0.95rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa3af;
    font-size: 0.85rem;
    pointer-events: none;
    z-index: 2;
    transition: color 0.2s ease;
}

.lead-modal-field-icon--top {
    top: 1.05rem;
    transform: none;
}

.lead-modal-field:focus-within .lead-modal-field-icon {
    color: var(--brand-navy);
}

.lead-modal-input {
    border: 1.5px solid #e2e8f0;
    border-radius: 0.85rem;
    padding: 0.95rem 1rem 0.95rem 2.6rem;
    font-family: var(--font-body);
    font-size: 0.93rem;
    color: #222;
    background: #f8fafc;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.lead-modal-input::placeholder {
    color: #94a3b8;
}

.lead-modal-input:hover {
    border-color: #cbd5e1;
    background: #fff;
}

.lead-modal-input:focus {
    background: #fff;
    border-color: var(--brand-navy);
    box-shadow: 0 0 0 0.2rem rgba(0, 39, 104, 0.12);
}

.lead-modal-form textarea.lead-modal-input {
    min-height: 118px;
    resize: vertical;
    padding-top: 0.95rem;
}

.btn-lead-modal-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    background: linear-gradient(135deg, var(--brand-navy) 0%, #003a8c 100%);
    color: #fff;
    border: 0;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.98rem;
    padding: 0.92rem 1.35rem;
    box-shadow: 0 10px 22px rgba(0, 39, 104, 0.28);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-lead-modal-submit:hover,
.btn-lead-modal-submit:focus {
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-hover) 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(191, 11, 48, 0.28);
}

.btn-lead-modal-submit i {
    transition: transform 0.2s ease;
}

.btn-lead-modal-submit:hover i,
.btn-lead-modal-submit:focus i {
    transform: translateX(3px);
}

.lead-modal-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1.15rem;
    text-align: center;
}

.lead-modal-trust-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--brand-navy);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.lead-modal-trust-link:hover {
    color: var(--brand-red);
}

.lead-modal-trust-note {
    color: #889;
    font-size: 0.78rem;
}

@media (max-width: 575.98px) {
    .lead-modal .modal-dialog {
        margin: 0.75rem;
    }

    .lead-modal .modal-header,
    .lead-modal .modal-body {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

/* ---------- Thank you page ---------- */

.thank-you-section {
    position: relative;
    padding: 9.5rem 0 5.5rem;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    position: relative;
    z-index: 1;
}

.thank-you-card {
    position: relative;
    max-width: 40rem;
    margin: 0 auto;
    padding: 3rem 2.25rem 2.5rem;
    border-radius: 1.6rem;
    border: 1px solid rgba(0, 39, 104, 0.1);
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 39, 104, 0.07), transparent 60%),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgba(191, 11, 48, 0.06), transparent 55%),
        #fff;
    box-shadow:
        0 28px 56px rgba(15, 23, 42, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.85) inset;
    overflow: hidden;
}

.thank-you-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--brand-navy), var(--brand-red));
}

.thank-you-icon {
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--brand-navy), #003a8c);
    color: #fff;
    font-size: 1.55rem;
    box-shadow:
        0 14px 28px rgba(0, 39, 104, 0.3),
        0 0 0 10px rgba(0, 39, 104, 0.08);
    animation: thankYouPop 0.55s ease both;
}

.thank-you-eyebrow {
    display: inline-flex;
    margin: 0 0 0.85rem;
    padding: 0.32rem 0.8rem;
    border-radius: 999px;
    background: rgba(0, 39, 104, 0.1);
    color: var(--brand-navy);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.thank-you-title {
    margin: 0 auto 0.9rem;
    text-transform: capitalize;
}

.thank-you-desc {
    max-width: 28rem;
    margin: 0 auto 1.75rem;
    color: #556;
    font-size: 1.05rem;
    line-height: 1.65;
}

.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    margin-bottom: 1.75rem;
}

.thank-you-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.thank-you-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    justify-content: center;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.thank-you-meta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--brand-navy);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.thank-you-meta-link:hover {
    color: var(--brand-red);
}

@keyframes thankYouPop {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }
    70% {
        transform: scale(1.08);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 991.98px) {
    .thank-you-section {
        padding: 8rem 0 4rem;
        min-height: auto;
    }
}

@media (max-width: 575.98px) {
    .thank-you-card {
        padding: 2.35rem 1.35rem 2rem;
    }

    .thank-you-title {
        font-size: 30px;
    }

    .thank-you-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .thank-you-meta {
        flex-direction: column;
        align-items: center;
        gap: 0.65rem;
    }
}
