/* Local Logic template — scoped to plugin single CSS load */

/* Variables (prefixed to avoid theme global collisions) */
:root {
    --trll-color-primary: #008491;
    --trll-color-secondary: #003548;
    --trll-page-bg: #f5fafa;
    --trll-text-default: #000;
    --trll-text-light: #fff;
    --trll-star-filled: #f28f3d;
    --trll-nav-border: #d0d0d0;
    --trll-subnav-border: #e0e0e0;
    --trll-pricing-border: #d4d4d4;
    --trll-section-muted-bg: #eee;
}

body {
    color: var(--trll-text-default, #000);
    background-color: var(--trll-page-bg, #f5fafa);
}

.ip-banner {
    display: none;
}

.max-container {
    padding: 0;
    max-width: 100%;
}

.img-container {
    position: relative;
    display: block;
}

.img-container canvas {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--secondary, #06bda6);
}

.img-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    object-fit: cover;
}

.img-container.no-bg canvas {
    background-color: transparent;
}

.img-container.no-bg img {
    object-fit: contain;
}

.bg-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-img.fixed {
    background-attachment: scroll;
}

.mobile .bg-img.fixed,
.safari-true .bg-img.fixed {
    background-attachment: scroll !important;
}

.section-title {
    color: var(--trll-text-default, #000);
    font-size: var(--font-size-title, clamp(35px, 3.25vw, 52px));
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    font-family: var(--font-family-title, 'Outfit', sans-serif);
}

.section-title.wht {
    color: var(--font-color-light, #fff);
}

.title-accent {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.title-accent.wht {
    filter: brightness(0) invert(1);
}

/* GLOBAL BUTTON — values mirror theme; colors from Local Logic palette */
.global-btn {
    display: block;
    background-color: var(--trll-color-primary, #008491);
    border-radius: 18px;
    border-bottom-right-radius: 0;
    box-shadow: none;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 23px;
    color: var(--trll-text-light, #fff);
    text-transform: uppercase;
    text-align: center;
    width: 165px;
}

.global-btn:hover,
.global-btn:focus {
    background-color: var(--trll-color-secondary, #003548);
    color: var(--trll-text-light, #fff);
    box-shadow: none;
}

.global-btn.secondary {
    background-color: rgba(0, 132, 145, 0.1);
}

.global-btn.secondary:hover,
.global-btn.secondary:focus {
    background-color: var(--trll-color-primary, #008491);
    color: var(--trll-text-light, #fff);
}

.global-btn.outline {
    background-color: transparent;
    outline: 1px solid var(--trll-color-primary, #008491);
    color: var(--trll-text-default, #000);
    box-shadow: none;
}

.global-btn.outline:hover,
.global-btn.outline:focus {
    background-color: var(--trll-color-primary, #008491);
    color: var(--trll-text-light, #fff);
    outline: none;
    box-shadow: none;
}

/* Header — theme default primary (same pattern as RealScout showcase) */
.header .header__inner {
    background-color: var(--primary, #0f3732);
}

.header--fixed .header__inner {
    background-color: transparent;
}

.header__navigation #nav>li:nth-last-child(-n + 2)>a {
    background-color: var(--rs-accent-light, #fff);
    color: var(--primary, #0f3732);
    box-shadow: none;
}

.header__navigation #nav>li:nth-last-child(-n + 2)>a:hover {
    background-color: var(--rs-secondary, #1b1b1b);
    color: var(--rs-accent-light, #fff);
}

/* Banner */
.llBanner {
    position: relative;
    padding: 150px 15px 60px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.llBanner__inner {
    width: 100%;
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.llBanner__left {
    width: 100%;
}

.llBanner__logo {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 18px;
}

.llBanner__logo .img-container {
    width: 100%;
}

.llBanner__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 29px;
}

.llBanner__meta .dot {
    display: none;
    width: 3px;
    height: 3px;
    min-width: 3px;
    background-color: var(--trll-text-default, #000);
    border-radius: 50%;
}

.llBanner__badge {
    flex-shrink: 0;
}

.llBanner__badge .img-container {
    display: inline-block;
}

.llBanner__rating {
    display: flex;
    align-items: center;
    gap: 3px;
}

.llBanner__rating i {
    color: #d4d4d4;
    font-size: 21px;
}

.llBanner__rating i.filled {
    color: var(--trll-star-filled, #f28f3d);
}

.llBanner__rating .rating-text {
    margin-left: 15px;
}

.llBanner__rating .rating-text,
.llBanner__meta .banner-category {
    color: var(--trll-text-default, #000);
    font-family: var(--font-family-title, 'Outfit', sans-serif);
    font-size: 22px;
    font-weight: 500;
    white-space: nowrap;
}

.llBanner__text {
    font-size: 15px;
    line-height: 1.275;
    letter-spacing: 0.03em;
    text-align: center;
    color: var(--trll-text-default, #000);
    font-weight: 300;
}

.llBanner__text p {
    margin: 0 0 1em;
}

.llBanner__text p:last-child {
    margin-bottom: 0;
}

.llBanner__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 52px;
    width: 100%;
}

.llBanner__cta .global-btn {
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 12px 15px;
    width: 100%;
    max-width: 210px;
    background-color: var(--trll-color-primary, #008491);
    color: var(--trll-text-light, #fff);
    box-shadow: none;
}

.llBanner__cta .global-btn:hover,
.llBanner__cta .global-btn:focus {
    background-color: var(--trll-color-secondary, #003548);
    color: var(--trll-text-light, #fff);
    box-shadow: none;
}

.llBanner__right {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.llBanner__photo {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.llBanner__photo .img-container {
    width: 100%;
}

/* In-page navigation */
.llNavigation {
    position: relative;
    padding: 40px 15px 0;
}

.llNavigation__inner {
    max-width: 400px;
    width: 100%;
    margin: auto;
}

.llNavigation__buttons {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--trll-subnav-border, #e0e0e0);
}

.llNavigation__button {
    display: block;
    padding: 17px;
    width: 100%;
    background-color: #fff;
    color: var(--trll-text-default, #000);
    font-size: 17px;
    font-family: var(--font-family-title, 'Outfit', sans-serif);
    font-weight: 500;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    border: none;
    border-bottom: 1px solid var(--trll-subnav-border, #e0e0e0);
    cursor: pointer;
    transition: var(--default-transition, 0.3s ease);
}

.llNavigation__button:last-child {
    border-bottom: none;
}

.llNavigation__button:hover,
.llNavigation__button:focus {
    background-color: var(--trll-color-primary, #008491);
    color: var(--trll-text-light, #fff);
}

.llNavigation__button.active {
    background-color: var(--trll-color-primary, #008491);
    color: var(--trll-text-light, #fff);
}

.llNavigation__button.active:hover,
.llNavigation__button.active:focus {
    filter: brightness(0.95);
}

/* Quick Take — structure matches RealScout .rsQuickTake */
.llQuickTake {
    position: relative;
    padding: 60px 15px;
}

.llQuickTake .section-title {
    font-size: clamp(35px, 3.0625vw, 49px);
}

.llQuickTake__inner {
    max-width: 600px;
    width: 100%;
    margin: auto;
}

.llQuickTake__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.llQuickTake__left {
    width: 100%;
    max-width: 350px;
}

.llQuickTake__left .img-container {
    width: 100%;
    border-radius: 33px;
    overflow: hidden;
}

.llQuickTake__right {
    width: 100%;
}

.llQuickTake__points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.llQuickTake__point {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    padding: 20px 15px;
    background-color: var(--trll-text-light, #fff);
    border-radius: 33px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.llQuickTake__point--icon {
    flex-shrink: 0;
    width: 88px;
}

.llQuickTake__point--content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.llQuickTake__point--title {
    font-family: var(--font-family-title, 'Outfit', sans-serif);
    font-size: clamp(20px, 1.5625vw, 25px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--trll-text-default, #000);
    text-align: center;
    width: 100%;
}

.llQuickTake__point--title br {
    display: none;
}

.llQuickTake__point--text {
    font-size: 14px;
    line-height: 1.857;
    letter-spacing: 0.02em;
    color: var(--trll-text-default, #000);
    text-align: center;
    font-weight: 300;
    width: 100%;
}

/* About (product description) */
.llAbout {
    position: relative;
    padding: 60px 15px;
    background-color: var(--trll-color-secondary, #003548);
    border-bottom-left-radius: 33px;
    border-bottom-right-radius: 33px;
}

.llAbout .section-title {
    font-size: clamp(35px, 3.0625vw, 49px);
}

.llAbout__inner {
    max-width: 600px;
    width: 100%;
    margin: auto;
}

.llAbout__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 35px;
}

.llAbout__text {
    width: 100%;
    font-size: 14px;
    line-height: 1.857;
    letter-spacing: 0.04em;
    color: var(--font-color-light, #fff);
    text-align: center;
    font-weight: 300;
}

.llAbout__text p {
    margin-bottom: 25px;
}

.llAbout__text p:last-child {
    margin-bottom: 0;
}

.llAbout__video {
    position: relative;
    width: 100%;
}

.llAbout__video .poster {
    position: relative;
    overflow: hidden;
    border-radius: 33px;
}

.llAbout__video .poster .play-btn {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    color: var(--font-color-light, #fff);
    border: 2px solid var(--font-color-light, #fff);
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    transform: translateY(-50%);
    transition: var(--default-transition, .3s cubic-bezier(.4, 0, .2, 1));
}

.llAbout__video .poster .play-btn i {
    position: relative;
    left: 3px;
    font-size: 18px;
}

.llAbout__video .poster:hover .play-btn {
    background-color: var(--trll-color-primary, #008491);
    border-color: var(--trll-color-primary, #008491);
}

/* Interview */
.llInterview {
    position: relative;
    padding: 60px 15px;
}

.llInterview .section-title {
    font-size: clamp(35px, 3.0625vw, 49px);
}

.llInterview__inner {
    max-width: 600px;
    width: 100%;
    margin: auto;
}

.llInterview__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.llInterview__video {
    position: relative;
    width: 100%;
}

.llInterview__video .poster {
    position: relative;
    overflow: hidden;
    border-radius: 33px;
}

.llInterview__video .poster .play-btn {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    color: var(--font-color-light, #fff);
    border: 2px solid var(--font-color-light, #fff);
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    transform: translateY(-50%);
    transition: var(--default-transition, .3s cubic-bezier(.4, 0, .2, 1));
}

.llInterview__video .poster .play-btn i {
    position: relative;
    left: 3px;
    font-size: 18px;
}

.llInterview__video .poster:hover .play-btn {
    background-color: var(--trll-color-primary, #008491);
    border-color: var(--trll-color-primary, #008491);
}

.llInterview__text {
    width: 100%;
}

.llInterview__text .section-title {
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.25;
}

.llInterview__text .text {
    font-size: 14px;
    line-height: 1.857;
    letter-spacing: 0.04em;
    text-align: center;
    font-weight: 300;
}

.llInterview__text .text p {
    margin-bottom: 27px;
}

.llInterview__text .text p:last-child {
    margin-bottom: 0;
}

.llInterview__founder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 27px;
}

.llInterview__founder--photo {
    flex-shrink: 0;
    width: 78px;
    height: 78px;
}

.llInterview__founder--photo .img-container {
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--trll-color-secondary, #003548);
}

.llInterview__founder--info {
    flex: 1;
    text-align: center;
}

.llInterview__founder--info .founder-name {
    font-family: var(--font-family-title, 'Outfit', sans-serif);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.02em;
    line-height: 1.285;
    color: var(--trll-text-default, #000);
}

.llInterview__founder--info .founder-position {
    font-size: clamp(12px, 0.875vw, 14px);
    line-height: 1.285;
    letter-spacing: 0.02em;
    color: var(--trll-text-default, #000);
}

.llInterview__content .llInterview__text:only-child {
    width: 100%;
}

.llInterview__content .llInterview__text:only-child .section-title,
.llInterview__content .llInterview__text:only-child .text {
    text-align: center;
}

/* Perfect For */
.llPerfectFor {
    position: relative;
    padding: 5px 15px 60px;
}

.llPerfectFor__inner {
    max-width: 400px;
    width: 100%;
    margin: auto;
}

.llPerfectFor .section-title {
    font-size: 27px;
}

.llPerfectFor__content {
    display: flex;
    flex-direction: column;
}

.llPerfectFor__title {
    width: 100%;
    margin-bottom: 40px;
}

.llPerfectFor__title .section-title {
    text-align: center;
    line-height: 1.2;
}

.llPerfectFor__title br {
    display: none;
}

.llPerfectFor__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.llPerfectFor__list .perfect-for {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.llPerfectFor__list .perfect-for .icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.llPerfectFor__list .perfect-for .icon .img-container {
    width: 60px;
    height: 60px;
}

.llPerfectFor__list .perfect-for .text {
    color: var(--trll-text-default, #000);
    font-family: var(--font-family-title, 'Outfit', sans-serif);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.25;
}

/* Journey */
.llJourney {
    position: relative;
    padding: 60px 15px;
    background-color: var(--trll-color-secondary, #003548);
    color: var(--trll-text-light, #fff);
    border-bottom-left-radius: 33px;
    border-bottom-right-radius: 33px;
}

.llJourney .section-title {
    font-size: clamp(35px, 3.0625vw, 49px);
}

.llJourney__inner {
    max-width: 400px;
    width: 100%;
    margin: auto;
}

.llJourney__steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.llJourney__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.llJourney__step--header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    width: 100%;
}

.llJourney__step--header-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.llJourney__step--icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.llJourney__step--icon .img-container {
    width: 24px;
    height: 24px;
}

.llJourney__step--title {
    font-family: var(--font-family-title, 'Outfit', sans-serif);
    font-weight: 500;
    font-size: 25px;
    color: var(--trll-text-light, #fff);
    line-height: 1.2;
    margin: 0;
}

.llJourney__step--title br {
    display: none;
}

.llJourney__step--text {
    font-size: 14px;
    line-height: 1.857;
    color: var(--trll-text-light, #fff);
    font-weight: 300;
    letter-spacing: 0.04em;
}

/* Key Features */
.llKeyFeatures {
    position: relative;
    padding: 60px 15px;
}

.llKeyFeatures__inner {
    max-width: 400px;
    width: 100%;
    margin: auto;
}

.llKeyFeatures .section-title {
    font-size: clamp(35px, 3.0625vw, 49px);
}

.llKeyFeatures__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 32px;
}

.llKeyFeatures__item {
    width: 100%;
}

.llKeyFeatures__photo {
    width: 100%;
    margin-bottom: 20px;
}

.llKeyFeatures__photo .img-container {
    width: 100%;
    overflow: hidden;
}

.llKeyFeatures__item-title {
    margin: 0 0 10px;
    color: var(--trll-text-default, #000);
    font-family: var(--font-family-title, 'Outfit', sans-serif);
    font-weight: 600;
    font-size: clamp(18px, 1.25vw, 20px);
    line-height: 1.2;
    text-align: center;
}

.llKeyFeatures__item-text {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1.857;
    color: var(--trll-text-default, #000);
    text-align: center;
}

/* Integrations */
.llIntegrations {
    position: relative;
    padding: 60px 15px;
    background-color: var(--trll-section-muted-bg, #eee);
}

.llIntegrations__inner {
    max-width: 100%;
    width: 100%;
    margin: auto;
}

.llIntegrations .section-title {
    font-size: 27px;
    line-height: 1.2;
}

.llIntegrations__content {
    display: flex;
    flex-direction: column;
}

.llIntegrations__title {
    width: 100%;
    margin-bottom: 40px;
}

.llIntegrations__title .section-title {
    text-align: center;
    line-height: 1.2;
}

.llIntegrations__line {
    display: none;
}

.llIntegrations__marquee {
    width: 100%;
}

.llIntegrations__marquee-track {
    display: flex;
}

/* 5+ logos: horizontal marquee on all viewports */
.llIntegrations__marquee--scroll {
    overflow: hidden;
}

.llIntegrations__marquee--scroll .llIntegrations__marquee-track {
    width: max-content;
    animation: llIntegrationsMarqueeScroll 30s linear infinite;
}

.llIntegrations__marquee--scroll .llIntegrations__logos {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 auto;
    gap: 50px;
}

.llIntegrations__marquee--scroll .llIntegrations__logos + .llIntegrations__logos {
    margin-left: 50px;
}

.llIntegrations__marquee--scroll .llIntegrations__logos .integration-logo {
    flex: 0 0 auto;
    gap: 0;
    max-width: 180px;
}

.llIntegrations__marquee--scroll .llIntegrations__logos .integration-logo .img-container {
    width: auto;
    max-width: none;
    height: 38px;
    min-width: 0;
    flex-shrink: 1;
}

.llIntegrations__marquee--scroll .llIntegrations__logos .integration-logo .img-container img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Fewer than 5 logos: stacked column on mobile only */
.llIntegrations__logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.llIntegrations__logos .integration-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.llIntegrations__logos .integration-logo .img-container {
    width: 100%;
    max-width: 250px;
}

.llIntegrations__logos .integration-logo .img-container img {
    width: 100%;
    height: auto;
}

/* Pricing */
.llPricing {
    position: relative;
    padding: 60px 15px;
}

.llPricing__inner {
    max-width: 400px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.llPricing__title,
.llPricing__columns {
    width: 100%;
}

.llPricing__title {
    text-align: center;
    margin-bottom: 65px;
    font-size: clamp(35px, 3.0625vw, 49px);
    line-height: 1.2;
    color: var(--trll-text-default, #000);
}

.llPricing__columns {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.llPricing__column {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--trll-pricing-border, #d4d4d4);
}

.llPricing__line {
    height: 1px;
    background: var(--trll-pricing-border, #d4d4d4);
    width: 100%;
}

.llPricing__cell {
    padding: 36px 20px;
    text-align: center;
}

.llPricing__cell--top {
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.llPricing__cell--bottom {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-bottom: 35px;
}

.llPricing__label {
    margin-top: auto;
    margin-bottom: 5px;
}

.llPricing__tier-name {
    margin: 0;
    color: var(--trll-color-secondary, #003548);
    font-family: var(--font-family-title, 'Outfit', sans-serif);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 10px;
}

.llPricing__price {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 0;
}

.llPricing__price-number {
    color: var(--trll-color-primary, #008491);
    font-family: var(--font-family-title, 'Outfit', sans-serif);
    font-size: clamp(24px, 2vw, 32px);
    font-weight: 500;
    line-height: 1;
}

.llPricing__label,
.llPricing__price-term,
.llPricing__billed-text {
    color: var(--trll-text-default, #000);
    font-family: var(--font-family-title, 'Outfit', sans-serif);
    font-size: 17px;
    font-weight: 400;
    line-height: 1;
}

.llPricing__price-term {
    align-self: flex-start;
    margin-top: 5px;
}

.llPricing__billed-text {
    margin-top: 8px;
}

.llPricing__features-title {
    margin: 0 0 22px;
    color: var(--trll-color-secondary, #003548);
    font-family: var(--font-family-title, 'Outfit', sans-serif);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.llPricing__perks {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.llPricing__perks li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    color: var(--trll-text-default, #000);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    text-align: left;
    letter-spacing: .05em;
}

.llPricing__perks li i {
    color: var(--trll-color-primary, #008491);
    font-size: 16px;
    line-height: 1.3;
    margin-top: 2px;
    flex-shrink: 0;
}

.llPricing__btn {
    margin-top: 28px;
    width: 100%;
    max-width: 165px;
    align-self: center;
}

/* Proven Results (mirrors RealScout layout; two photos + Local Logic fields) */
.llProvenResults {
    position: relative;
    padding: 60px 15px;
}

.llProvenResults__inner {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.llProvenResults__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.llProvenResults__images {
    position: relative;
    width: 100%;
}

.llProvenResults__photo {
    width: 100%;
}

.llProvenResults__images--single .llProvenResults__photo {
    width: 100%;
}

.llProvenResults__images--single .llProvenResults__photo .img-container {
    width: 100%;
    border-radius: 33px;
    overflow: hidden;
}

.llProvenResults__right {
    width: 100%;
}

.llProvenResults__header {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.llProvenResults__logo {
    margin-bottom: 0;
    max-width: 320px;
    width: 100%;
}

.llProvenResults__title {
    font-size: clamp(35px, 3.0625vw, 49px);
    text-align: center;
}

.llProvenResults__slider {
    position: relative;
    margin-top: 12px;
    width: 100%;
    min-width: 100%;
}

.ll-results-slider-list {
    margin: 0;
    padding: 0;
}

.ll-results-slider-list:not(.slick-initialized)>div:nth-child(n + 2) {
    display: none;
}

.ll-results-slider-list:not(.slick-initialized) {
    display: block;
    width: 100%;
}

.ll-results-slider-list:not(.slick-initialized)>div {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    display: block;
}

.ll-results-slider-list .slick-list {
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
}

.ll-results-slider-list .slick-track {
    display: flex;
    align-items: center;
}

.ll-results-slider-list>div {
    margin-bottom: 0;
    padding-right: 10px;
    text-align: center;
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
}

.ll-results-slide-text {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.857;
    color: var(--trll-text-default, #000);
    margin-bottom: 10px;
}

.ll-results-slide-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.733;
    margin-bottom: 0;
    color: var(--trll-text-default, #000);
}

.ll-results-slide-subtitle {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.733;
    margin-bottom: 0;
    color: var(--trll-text-default, #000);
}

.ll-results-slider-arrows {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.ll-results-slider-prev,
.ll-results-slider-next {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    color: var(--trll-color-primary, #008491);
    font-size: 16px;
    -webkit-text-stroke: 1px var(--trll-color-primary, #008491);
    transition: var(--default-transition, 0.3s cubic-bezier(0.4, 0, 0.2, 1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.ll-results-slider-prev:hover,
.ll-results-slider-next:hover {
    color: var(--trll-color-secondary, #003548);
    -webkit-text-stroke: 1px var(--trll-color-secondary, #003548);
}

/* Market Stats */
.llMarketStats {
    position: relative;
    padding: 60px 15px;
}

.llMarketStats__bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    height: clamp(170px, 21.8175vw, 350px);
    border-bottom-left-radius: 33px;
    border-bottom-right-radius: 33px;
    background-color: var(--trll-color-secondary, #003548);
}

.llMarketStats__inner {
    max-width: 600px;
    width: 100%;
    margin: auto;
    position: relative;
    z-index: 1;
}

.llMarketStats__box {
    background-color: #fff;
    box-shadow: 0 1px 38px rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    padding: 45px 15px;
    text-align: center;
}

.llMarketStats__box-inner {
    width: 100%;
    margin: auto;
}

.llMarketStats__title {
    font-size: clamp(35px, 3.0625vw, 49px);
    line-height: 1.25;
    margin-bottom: 50px;
    color: var(--trll-text-default, #000);
}

.llMarketStats__stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.llMarketStats__stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.llMarketStats__stat-number {
    font-weight: 500;
    font-size: clamp(35px, 3.0625vw, 49px);
    font-family: var(--font-family-title, 'Outfit', sans-serif);
    color: var(--trll-color-primary, #008491);
}

.llMarketStats__stat-label {
    font-family: var(--font-family-title, 'Outfit', sans-serif);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--trll-text-default, #000);
}

/* Client Reviews (AJAX + Slick carousel; avatar + name) */
/* Mobile: horizontal padding on section; inner is flush — desktop restores inner padding at min-width: 1024px */
.llReviews {
    position: relative;
    padding: 60px 15px;
    overflow-x: visible;
}

.llReviews__inner {
    max-width: 600px;
    width: 100%;
    margin: auto;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}

.llReviews__title {
    font-size: clamp(35px, 3.25vw, 49px);
    margin-bottom: 45px;
}

.llReviews__grid {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border: none;
    overflow: visible;
}

.llReviews__grid .tech-reviews-loading {
    text-align: center;
    padding: 40px 15px;
}

.llReviews__grid.slick-initialized {
    width: 100%;
    box-sizing: border-box;
}

.llReviews__grid.slick-initialized .slick-list {
    overflow: hidden;
    box-sizing: border-box;
}

/* Equal-height slides: stretch track so every slide matches the tallest card (overrides Slick inline height). */
.llReviews__grid.slick-initialized .slick-track {
    display: flex !important;
    align-items: stretch !important;
}

.llReviews__grid.slick-initialized .slick-slide {
    padding: 0;
    box-sizing: border-box;
    float: none !important;
    height: auto !important;
    align-self: stretch !important;
}

.llReviews__grid.slick-initialized .slick-slide>div {
    height: 100%;
    min-height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Space between slide cards — desktop only (min-width: 1024px); mobile: no horizontal margin */
.llReviews__grid.slick-initialized .llReviews__card {
    margin-left: 0;
    margin-right: 0;
}

.llReviews__card {
    border: 1px solid var(--trll-subnav-border, #e0e0e0);
    border-radius: 3px;
    background: #fff;
    flex: 1;
    min-height: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* Mobile-first: centered copy; .llReviews__inner max-width 600px until min-width: 1024px */
.llReviews__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 44px 15px;
    flex: 1;
    min-height: 0;
    cursor: pointer;
}

.llReviews__avatar {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
}

.llReviews__text {
    font-family: var(--font-family-title, 'Outfit', sans-serif);
    font-size: clamp(24px, 2vw, 32px);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0;
    color: var(--trll-text-default, #000);
    flex: 1;
    width: 100%;
    text-align: center;
}

.llReviews__profile-photo {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
}

.llReviews__profile-photo .img-container {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--trll-color-secondary, #003548);
}

.llReviews__profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.llReviews__profile-placeholder {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: var(--trll-color-secondary, #003548);
    color: var(--trll-text-light, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-family-title, 'Outfit', sans-serif);
}

.llReviews__profile-name {
    margin-top: 26px;
    font-family: var(--font-family-title, 'Outfit', sans-serif);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--trll-text-default, #000);
    width: 100%;
    text-align: center;
}

.llReviews__placeholder {
    padding: 40px 20px;
    text-align: center;
    font-size: 22px;
    letter-spacing: 0.02em;
    line-height: 1.18;
    color: var(--trll-text-default, #000);
    border: 1px solid var(--trll-subnav-border, #e0e0e0);
    border-radius: 3px;
    background: #fff;
}

.llReviews__buttonsOuter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 45px;
}

.llReviews__buttonsOuter .llReviews__buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 0;
}

.llReviews__buttons .global-btn {
    min-width: 200px;
}

.llReviews__btn-1,
.llReviews__btn-2 {
    background-color: var(--trll-color-primary, #008491);
    color: var(--trll-text-light, #fff);
    box-shadow: none;
}

.llReviews__btn-1:hover,
.llReviews__btn-2:hover {
    background-color: var(--trll-color-secondary, #003548);
    color: var(--trll-text-light, #fff);
}

.llReviews .slick-prev,
.llReviews .slick-next {
    display: none !important;
}

/* Notable Clients (same muted background as Integrations; five-up on xl) */
.llNotableClients {
    position: relative;
    padding: 60px 15px;
    background-color: var(--trll-section-muted-bg, #eee);
}

.llNotableClients__inner {
    max-width: 1920px;
    width: 100%;
    margin: auto;
}

.llNotableClients__title {
    margin-bottom: 40px;
    text-align: center;
    font-size: clamp(35px, 3.0625vw, 49px);
    line-height: 1.2;
}

.llNotableClients__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
    justify-items: center;
}

/* Mobile / tablet: <1024px — compact logo cells */
.llNotableClients__item {
    max-width: 300px;
    width: 100%;
    height: 100px;
    padding: 15px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.llNotableClients__item .img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-width: 180px;
    width: auto;
}

.llNotableClients__item .img-container img {
    object-fit: contain;
}

/* Preview */
.llPreview {
    position: relative;
    padding: 60px 15px;
}

.llPreview::before {
    content: '';
    position: absolute;
    top: 150px;
    left: 0;
    right: 0;
    bottom: 185px;
    background-color: #fff;
    z-index: -1;
}

.llPreview__inner {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.llPreview__layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.llPreview__title {
    margin: 0;
    width: 100%;
    font-size: clamp(35px, 3.0625vw, 49px);
    line-height: 1.2;
    text-align: center;
}

.llPreview__photo {
    width: 100%;
    max-width: max(36%, 500px);
}

.llPreview__photo .img-container {
    width: 100%;
    max-width: 100%;
}

.llPreview__photo .img-container img {
    width: 100%;
    height: auto;
}

/* Summary (mirrors RealScout .techdSummary; Local Logic palette) */
.llSummary {
    position: relative;
    padding: 60px 15px;
}

.llSummary__inner {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.llSummary__title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: fit-content;
    max-width: 290px;
    margin: auto;
}

.llSummary__logo {
    flex-shrink: 0;
}

.llSummary__logo img {
    width: 42px;
    height: 44px;
    display: block;
}

.llSummary__title {
    font-size: clamp(35px, 3.0625vw, 49px);
    line-height: 1.2;
}

.llSummary .section-title {
    text-align: center;
    margin: 0;
    width: 62%;
    font-size: clamp(35px, 3.0625vw, 49px);
}

.llSummary__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 63px;
}

.llSummary__left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.llSummary__left-logo {
    margin-bottom: 25px;
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
}

.llSummary__rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 25px;
}

.llSummary__rating i {
    color: #d4d4d4;
    font-size: 21px;
}

.llSummary__rating i.filled {
    color: var(--trll-star-filled, #f28f3d);
}

.llSummary__rating .rating-text {
    margin-left: 15px;
    color: var(--trll-text-default, #000);
    font-family: var(--font-family-title, 'Outfit', sans-serif);
    font-size: 22px;
    font-weight: 500;
    white-space: nowrap;
}

.llSummary__buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.llSummary__buttons .global-btn {
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 12px 15px;
    width: 100%;
    max-width: 210px;
    background-color: var(--trll-color-primary, #008491);
    color: var(--trll-text-light, #fff);
    box-shadow: none;
}

.llSummary__buttons .global-btn.llSummary__btn-1 {
    background-color: var(--trll-color-primary, #008491);
}

.llSummary__buttons .global-btn.llSummary__btn-1:hover,
.llSummary__buttons .global-btn.llSummary__btn-1:focus {
    background-color: var(--trll-color-secondary, #003548);
    color: var(--trll-text-light, #fff);
}

.llSummary__buttons .global-btn.llSummary__btn-2 {
    background-color: var(--trll-color-primary, #008491);
}

.llSummary__buttons .global-btn.llSummary__btn-2:hover,
.llSummary__buttons .global-btn.llSummary__btn-2:focus {
    background-color: var(--trll-color-secondary, #003548);
    color: var(--trll-text-light, #fff);
}

.llSummary__right {
    width: 100%;
}

.llSummary__right-title {
    font-family: var(--font-family-title, 'Outfit', sans-serif);
    font-weight: 500;
    font-size: clamp(22px, 2vw, 32px);
    line-height: 1.2;
    color: var(--trll-text-default, #000);
    margin: 0 0 15px;
    text-align: center;
}

.llSummary__right-text {
    font-size: 15px;
    line-height: 1.733;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    text-align: center;
    color: var(--trll-text-default, #000);
    font-weight: 300;
}

.llSummary__right-text p {
    margin-bottom: 15px;
}

.llSummary__right-text p:last-child {
    margin-bottom: 0;
}

/* ----- Responsive (consolidated; section order matches page flow) ----- */

@media only screen and (min-width: 744px) {

    /* Notable Clients */
    .llNotableClients__grid {
        grid-template-columns: repeat(2, 1fr);
        justify-items: stretch;
    }

    .llNotableClients__item {
        max-width: none;
    }

    /* Preview */
    .llPreview__inner {
        max-width: 1920px;
        width: 100%;
    }

    .llPreview__photo {
        width: 100%;
    }

    /* Summary */
    .llSummary .section-title {
        width: auto;
    }

    .llSummary__title-wrapper {
        width: auto;
        max-width: 100%;
        margin: 0;
    }
}

@media only screen and (min-width: 1024px) {

    /* Section titles & accents */
    .section-title {
        text-align: left;
    }

    .section-title.center {
        text-align: center;
    }

    .title-accent {
        justify-content: flex-start;
    }

    .title-accent.center {
        justify-content: center;
    }

    /* Banner */
    .llBanner {
        padding: 170px 15px 70px;
    }

    .llBanner__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        max-width: 1920px;
        width: 95%;
        gap: 30px;
    }

    .llBanner__left {
        width: 39%;
        min-width: 420px;
    }

    .llBanner__logo {
        max-width: 380px;
        margin-left: 0;
        margin-right: auto;
    }

    .llBanner__meta {
        flex-direction: row;
        align-items: center;
    }

    .llBanner__meta .dot {
        display: block;
    }

    .llBanner__text {
        text-align: left;
    }

    .llBanner__cta {
        flex-direction: row;
        width: auto;
    }

    .llBanner__cta .llBanner__cta-1 {
        width: 200px;
        max-width: none;
    }

    .llBanner__cta .llBanner__cta-2 {
        width: 175px;
        max-width: none;
    }

    .llBanner__right {
        width: 53%;
        padding-bottom: 0;
        padding-top: 2%;
    }

    .llBanner__photo {
        margin-left: 0;
        margin-right: 0;
        max-width: 751px;
    }

    /* In-page navigation */
    .llNavigation {
        padding: 120px 15px 45px;
    }

    .llNavigation__inner {
        max-width: 1920px;
        width: 95%;
    }

    .llNavigation__buttons {
        flex-direction: row;
    }

    .llNavigation__button {
        flex: 1;
        width: auto;
        font-size: 17px;
        padding-left: 10px;
        padding-right: 10px;
        border-bottom: none;
        border-right: 1px solid var(--trll-subnav-border, #e0e0e0);
    }

    .llNavigation__button:last-child {
        border-right: none;
    }

    /* Quick Take — matches RealScout @1024 */
    .llQuickTake {
        padding: 0 15px 85px;
    }

    .llQuickTake .section-title {
        padding-left: 2%;
    }

    .llQuickTake__inner {
        max-width: 1920px;
        width: 95%;
    }

    .llQuickTake__content {
        flex-direction: row;
        align-items: center;
        margin-top: 0;
        gap: 0;
    }

    .llQuickTake__left {
        min-width: 350px;
        width: 28%;
        max-width: 100%;
        padding-top: 15px;
    }

    .llQuickTake__right {
        width: 82%;
        margin-left: -65px;
        z-index: 1;
    }

    .llQuickTake__point {
        flex-direction: row;
        justify-content: flex-start;
        gap: 25px;
        padding: 30px;
    }

    .llQuickTake__point--content {
        flex-direction: row;
        flex: 1;
        gap: 20px;
    }

    .llQuickTake__point--title {
        text-align: left;
        width: 32%;
    }

    .llQuickTake__point--text {
        text-align: left;
        width: 65%;
    }

    /* About */
    .llAbout {
        padding: 85px 15px 85px;
    }

    .llAbout__inner {
        max-width: 1920px;
        width: 95%;
    }

    .llAbout__content {
        flex-direction: row;
        justify-content: space-between;
        gap: 55px;
    }

    .llAbout__text {
        width: 50%;
        text-align: left;
    }

    .llAbout__content .llAbout__text:only-child {
        width: 100%;
        text-align: center;
    }

    .llAbout__video {
        width: 46%;
    }

    .llAbout__video .poster .play-btn {
        width: 50px;
        height: 50px;
    }

    .llAbout__video .poster .play-btn i {
        font-size: 20px;
    }

    /* Interview */
    .llInterview {
        padding: 105px 15px 50px;
    }

    .llInterview__inner {
        max-width: 1920px;
        width: 95%;
    }

    .llInterview__content {
        flex-direction: row;
        justify-content: space-between;
        gap: 60px;
    }

    .llInterview__video {
        width: 44.5%;
    }

    .llInterview__text {
        width: 50%;
    }

    .llInterview__content .llInterview__text:only-child {
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .llInterview__content .llInterview__text:only-child .section-title {
        text-align: center;
        width: 100%;
    }

    .llInterview__content .llInterview__text:only-child .text {
        text-align: center;
    }

    .llInterview__content .llInterview__text:only-child .llInterview__founder {
        align-self: center;
    }

    .llInterview__text .section-title {
        text-align: left;
        width: 90%;
    }

    .llInterview__text .text {
        text-align: left;
    }

    .llInterview__video .poster .play-btn {
        width: 50px;
        height: 50px;
    }

    .llInterview__video .poster .play-btn i {
        font-size: 20px;
    }

    .llInterview__founder {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .llInterview__founder--info {
        text-align: left;
    }

    /* Perfect For */
    .llPerfectFor {
        padding: 30px 15px 65px;
    }

    .llPerfectFor__inner {
        max-width: 1920px;
        width: 95%;
    }

    .llPerfectFor__content {
        flex-direction: row;
    }

    .llPerfectFor__title {
        min-width: 168px;
        width: 12%;
        margin-bottom: 0;
        margin-right: 15px;
        padding-top: 1%;
    }

    .llPerfectFor__title .section-title {
        text-align: left;
        margin-bottom: 0;
    }

    .llPerfectFor__list {
        flex-direction: row;
        flex: 1;
        gap: 15px;
        justify-content: flex-start;
    }

    .llPerfectFor__list .perfect-for {
        flex-direction: row;
        align-items: center;
        text-align: left;
        flex: 0 0 28.5%;
        gap: 20px;
    }

    .llPerfectFor__list .perfect-for:nth-child(3) {
        flex-basis: 39%;
    }

    .llPerfectFor__list .perfect-for .text {
        text-align: left;
        font-size: clamp(15px, 1.125vw, 18px);
    }

    /* Journey */
    .llJourney {
        padding: 70px 15px 60px;
    }

    .llJourney__inner {
        max-width: 1920px;
        width: 95%;
    }

    .llJourney__steps {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }

    .llJourney__step {
        flex: 0 0 calc((100% - 4 * 20px) / 5);
        align-items: flex-start;
        text-align: left;
    }

    .llJourney__step--header {
        justify-content: flex-start;
        align-items: flex-start;
        margin-bottom: 10px;
    }

    .llJourney__step--header-row {
        justify-content: flex-start;
        align-items: center;
    }

    .llJourney__step--title {
        text-align: left;
    }

    .llJourney__step--title br {
        display: block;
    }

    .llJourney__step--text {
        text-align: left;
    }

    /* Key Features */
    .llKeyFeatures {
        padding: 75px 15px 85px;
    }

    .llKeyFeatures__inner {
        max-width: 1920px;
        width: 95%;
    }

    .llKeyFeatures__list {
        flex-direction: row;
        gap: 10px;
        margin-top: 65px;
    }

    .llKeyFeatures__item {
        flex: 1;
        min-width: 0;
    }

    .llKeyFeatures__item-title,
    .llKeyFeatures__item-text {
        text-align: left;
    }

    /* Integrations */
    .llIntegrations {
        padding: 48px 15px 50px;
    }

    .llIntegrations__inner {
        max-width: 1920px;
        width: 95%;
    }

    .llIntegrations__content {
        flex-direction: row;
        align-items: center;
    }

    .llIntegrations__title {
        min-width: 196px;
        width: 14%;
        margin-bottom: 0;
    }

    .llIntegrations__title .section-title {
        text-align: left;
        margin-bottom: 0;
    }

    .llIntegrations__line {
        display: block;
        width: 1px;
        height: 77px;
        background-color: var(--trll-nav-border, #d0d0d0);
        flex-shrink: 0;
        margin-left: 10px;
        margin-right: 10px;
    }

    .llIntegrations__marquee {
        flex: 1;
        position: relative;
        overflow: hidden;
    }

    .llIntegrations__marquee-track {
        width: 100%;
    }

    .llIntegrations__marquee:not(.llIntegrations__marquee--scroll) .llIntegrations__logos {
        flex: 1;
        justify-content: space-between;
    }

    .llIntegrations__marquee--scroll .llIntegrations__marquee-track {
        animation: llIntegrationsMarqueeScroll 30s linear infinite;
    }

    .llIntegrations__marquee--scroll .llIntegrations__logos {
        flex: 0 0 auto;
        justify-content: flex-start;
    }

    .llIntegrations__marquee--scroll .llIntegrations__logos + .llIntegrations__logos {
        margin-left: 70px;
    }

    .llIntegrations__logos {
        flex-direction: row;
        gap: 70px;
        flex-wrap: nowrap;
    }

    .llIntegrations__logos .integration-logo {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        text-align: left;
        flex: 0 1 auto;
        gap: 0;
        min-width: 0;
        max-width: 180px    ;
    }

    .llIntegrations__logos .integration-logo .img-container {
        width: auto;
        max-width: none;
        height: 38px;
        min-width: 0;
        flex-shrink: 1;
    }

    .llIntegrations__logos .integration-logo .img-container img {
        width: auto;
        height: 100%;
        max-width: 100%;
        object-fit: contain;
    }

    /* Pricing */
    .llPricing {
        padding: 65px 15px 60px;
    }

    .llPricing__inner {
        max-width: 1920px;
        width: 95%;
    }

    .llPricing__columns {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
        align-items: stretch;
    }

    .llPricing__column {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .llPricing__cell {
        padding: 30px 15px;
        text-align: left;
        min-width: 0;
    }

    .llPricing__cell--top {
        align-items: flex-start;
        padding-bottom: 48px;
    }

    .llPricing__tier-name {
        font-size: clamp(20px, 2vw, 32px);
    }

    .llPricing__price {
        justify-content: flex-start;
    }

    .llPricing__btn {
        align-self: flex-start;
    }

    .llPricing__column[data-tier="4"] .llPricing__cell--top {
        position: relative;
    }

    .llPricing__column[data-tier="4"] .llPricing__billed-text {
        position: absolute;
        left: 24px;
        right: 24px;
        bottom: 25px;
        margin-top: 0;
    }

    /* Proven Results */
    .llProvenResults {
        padding: 55px 15px 60px;
    }

    .llProvenResults__inner {
        max-width: 1920px;
        width: 95%;
    }

    .llProvenResults__content {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 60px;
    }

    .llProvenResults__images {
        width: 40.5%;
        max-width: 100%;
        padding-left: 5.5%;
    }

    .llProvenResults__right {
        width: 49%;
        padding-right: 0;
        padding-bottom: 20px;
    }

    .llProvenResults__header {
        flex-direction: row;
        gap: 20px;
    }

    .llProvenResults__logo {
        margin-bottom: 0;
        width: 40%;
    }

    .llProvenResults__header .llProvenResults__title {
        margin: -10px 0 0 0;
        flex: 1;
        width: auto;
        max-width: none;
        text-align: left;
    }

    .ll-results-slider-arrows {
        justify-content: flex-start;
        margin-top: 30px;
    }

    .ll-results-slider-list>div {
        text-align: left;
    }

    .llProvenResults__content--no-images .llProvenResults__right {
        width: 100%;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Market Stats */
    .llMarketStats {
        padding: 0 15px 90px;
    }

    .llMarketStats__inner {
        max-width: 1920px;
        width: 95%;
    }

    .llMarketStats__stats {
        flex-direction: row;
        gap: 15px;
        margin: auto;
        width: 100%;
    }

    .llMarketStats__stat {
        flex: 1;
        width: auto;
    }

    .llMarketStats__stat-label {
        width: 65%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .llMarketStats__box {
        padding: 60px 15px;
    }

    .llMarketStats__box-inner {
        width: 80%;
    }

    /* Client Reviews */
    .llReviews {
        padding: 100px 0 125px;
    }

    .llReviews__inner {
        max-width: 1920px;
        width: 95%;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Full-bleed track from 1024px up; base (mobile) slider stays inside .llReviews__inner */
    .llReviews__grid.slick-initialized {
        width: 100vw !important;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        box-sizing: border-box;
    }

    .llReviews__grid.slick-initialized .llReviews__card {
        margin-left: 18px;
        margin-right: 18px;
    }

    .llReviews__content {
        padding: 64px 48px;
        flex: 1;
        min-height: 0;
        align-items: flex-start;
        text-align: left;
    }

    .llReviews__text {
        text-align: left;
    }

    .llReviews__profile-name {
        text-align: left;
    }

    .llReviews__avatar {
        justify-content: flex-start;
    }

    .llReviews__buttonsOuter .llReviews__buttons {
        flex-direction: row;
    }

    /* Notable Clients */
    .llNotableClients {
        padding: 60px 15px 95px;
    }

    .llNotableClients__inner {
        width: 95%;
    }

    /* Desktop: 1024+ — restore original logo cell layout (undo mobile-only rules) */
    .llNotableClients__item {
        height: auto;
        padding: 25px 15px;
        align-items: center;
    }

    .llNotableClients__item .img-container {
        height: auto;
        max-width: none;
        width: auto;
    }

    /* Preview */
    .llPreview {
        padding: 75px 15px 60px;
    }

    .llPreview__inner {
        max-width: 1920px;
        width: 95%;
    }

    .llPreview__layout {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .llPreview__title {
        width: 100%;
        min-width: 0;
        max-width: none;
        margin-bottom: 0;
        padding-top: 0;
        text-align: center;
    }

    /* Summary */
    .llSummary {
        padding: 25px 15px 40px;
    }

    .llSummary__inner {
        width: 95%;
        max-width: 1920px;
    }

    .llSummary__content {
        flex-direction: row;
        justify-content: space-between;
        gap: 30px;
        align-items: flex-start;
    }

    .llSummary__left {
        width: 35%;
        min-width: 410px;
        align-items: flex-start;
        text-align: left;
    }

    .llSummary__left-logo {
        margin-left: 0;
        margin-right: 0;
        max-width: 415px;
    }

    .llSummary__rating {
        justify-content: flex-start;
    }

    .llSummary__buttons {
        align-items: flex-start;
        flex-direction: row;
        width: auto;
    }

    .llSummary__buttons .global-btn.llSummary__btn-1 {
        width: 200px;
        max-width: none;
    }

    .llSummary__buttons .global-btn.llSummary__btn-2 {
        width: 175px;
        max-width: none;
    }

    .llSummary__right {
        width: 61%;
    }

    .llSummary__right-title {
        text-align: left;
        width: 85%;
    }

    .llSummary__right-text {
        text-align: left;
    }
}

@keyframes llIntegrationsMarqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media only screen and (min-width: 1280px) {

    /* Background */
    .bg-img.fixed {
        background-attachment: fixed;
    }

    /* Banner */
    .llBanner__inner {
        width: 89.5vw;
    }

    .llBanner__left {
        padding-top: 2%;
    }

    .llBanner__logo {
        max-width: 475px;
    }

    /* In-page navigation */
    .llNavigation__inner {
        width: 89vw;
    }

    /* Quick Take */
    .llQuickTake__inner {
        width: 89vw;
    }

    .llQuickTake__content {
        margin-top: -45px;
    }

    .llQuickTake__point--title br {
        display: block;
    }

    /* About */
    .llAbout__inner {
        width: 87.5vw;
    }

    .llAbout__text {
        padding-left: 2%;
        padding-top: 0;
    }

    /* Interview */
    .llInterview__inner {
        width: 89vw;
    }

    .llInterview__text {
        padding-top: 2%;
    }

    /* Perfect For */
    .llPerfectFor__inner {
        width: 89vw;
    }

    .llPerfectFor__list .perfect-for .icon,
    .llPerfectFor__list .perfect-for .icon .img-container {
        width: min(5.625vw, 90px);
        height: min(5.625vw, 90px);
    }

    .llPerfectFor__title {
        margin-right: 30px;
    }

    .llPerfectFor__title br {
        display: block;
    }

    .llPerfectFor__list {
        gap: 25px;
    }

    /* Journey */
    .llJourney__inner {
        width: 91vw;
    }

    .llJourney__steps {
        gap: 65px;
        justify-content: center;
        padding-right: 4%;
    }

    .llJourney__step {
        flex: 0 0 calc((100% - 4 * 65px) / 5);
    }

    /* Key Features */
    .llKeyFeatures__inner {
        width: 88vw;
    }

    .llKeyFeatures__list {
        gap: 12px;
    }

    /* Integrations */
    .llIntegrations__inner {
        width: 87.5vw;
    }

    .llIntegrations__line {
        margin-left: 45px;
        margin-right: 70px;
    }

    /* Pricing */
    .llPricing__inner {
        width: 87.5vw;
    }

    .llPricing__columns {
        gap: 18px;
    }

    .llPricing__cell {
        padding-left: clamp(15px, 1.125vw, 18px);
        padding-right: clamp(15px, 1.125vw, 18px);
    }

    /* Proven Results */
    .llProvenResults__inner {
        width: 87.5vw;
    }

    .llProvenResults__right {
        padding-top: 5.5%;
    }

    .llProvenResults__logo {
        width: 47%;
    }

    /* Market Stats */
    .llMarketStats__inner {
        width: 80vw;
    }

    .llMarketStats__box-inner {
        width: 84%;
    }

    .llMarketStats__stats {
        width: 69%;
    }

    /* Client Reviews */
    .llReviews__inner {
        width: 89vw;
    }

    .llReviews__content {
        padding: 65px 80px 80px;
    }

    .llReviews__grid.slick-initialized .llReviews__card {
        margin-left: 30px;
        margin-right: 30px;
    }

    /* Notable Clients — five columns; reset 2-col orphan rule so five logos fill one row */
    .llNotableClients__grid {
        grid-template-columns: repeat(5, 1fr);
        justify-items: stretch;
    }

    .llNotableClients__inner {
        max-width: 1920px;
        width: 88.5vw;
    }

    /* Preview */
    .llPreview__inner {
        width: 89vw;
        padding-left: 28px;
    }

    .llPreview__layout {
        gap: 45px;
    }

    /* Summary */
    .llSummary__inner {
        width: 82vw;
    }

    .llSummary__content {
        gap: 60px;
    }

    .llSummary__left {
        padding-left: 3%;
    }
}

@media only screen and (min-width: 1440px) {
    .llJourney__step--title {
        white-space: nowrap;
    }
}