/* Tesla Cybertruck catalog — mirrors PDF spreads (main site navbar) */

.ct-catalog-page {
    background: #050505;
    color: rgba(255, 255, 255, 0.92);
    padding-top: 0;
}

.ct-catalog-page--pdf {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Personal / corporate: catalog starts under fixed navbar (no landing hub gap). */
.ct-catalog-page--catalog-only {
    padding-top: clamp(4.75rem, 9vw, 5.75rem);
}

.ct-landing-hub {
    padding: clamp(4.75rem, 9vw, 5.75rem) clamp(1rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2rem);
    background: #030303;
}

.ct-landing-hub + .ct-catalog-page--pdf {
    padding-top: 0;
}

/* Toolbar: edition switch + download above PDF pages */
.ct-pdf-toolbar {
    position: sticky;
    top: 5.5rem;
    z-index: 20;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1rem;
    padding: 0.75rem 1rem;
    background: rgba(5, 5, 5, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    line-height: normal;
}

.ct-pdf-toolbar .ct-variant-switcher {
    margin: 0;
    max-width: 100%;
}

.ct-pdf-toolbar .ct-variant-switcher__btn {
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Inner pages: hero-derived content band + PDF spread */
.ct-pdf-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ct-pdf-section__content {
    padding: clamp(1.75rem, 4vw, 2.75rem) 1rem 1rem;
}

.ct-pdf-section__head {
    max-width: 52rem;
    margin: 0 auto;
    text-align: center;
}

.ct-pdf-section__page {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 0.65rem;
}

.ct-pdf-section__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 0.5rem;
}

.ct-pdf-section__title {
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 0.65rem;
}

.ct-pdf-section__lead {
    font-size: clamp(0.95rem, 1.4vw, 1.08rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 0.5rem;
}

.ct-pdf-section__intro {
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.ct-cover__spread {
    margin: 0;
    line-height: 0;
    background: #050505;
}

.ct-cover__spread img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.ct-pdf-toolbar__download {
    min-height: 48px;
    padding: 0.65rem 1.65rem;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* Each PNG = one PDF page (same order as catalog PDF) */
.ct-pdf-page {
    margin: 0;
    padding: 0;
    line-height: 0;
    background: #050505;
}

.ct-pdf-page__figure {
    position: relative;
    margin: 0;
    line-height: 0;
}

.ct-pdf-page__figure img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    image-rendering: auto;
}

/* Catalog video — full width (personal / corporate landing) */
.ct-pdf-page--has-video .ct-pdf-page__figure--video {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: min(56.25vw, 100vh);
    max-height: 100vh;
    overflow: hidden;
    background: #050505;
}

.ct-pdf-page__video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    backface-visibility: hidden;
}

.ct-pdf-page__figure--video .ct-pdf-page__poster {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ct-pdf-page--has-video.ct-pdf-page--has-copy .ct-pdf-spread-copy {
    z-index: 3;
}

.ct-pdf-page--has-video.ct-pdf-page--has-copy .ct-pdf-page__figure::before {
    z-index: 2;
}

/* English overlay — position matches PDF spread (bottom or top) */
.ct-pdf-page--layout-bottom.ct-pdf-page--has-copy .ct-pdf-page__figure::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 42%;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.55) 45%, rgba(5, 5, 5, 0.82) 100%);
    pointer-events: none;
    z-index: 1;
}

.ct-pdf-page--layout-top.ct-pdf-page--has-copy .ct-pdf-page__figure::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 48%;
    background: linear-gradient(0deg, transparent 0%, rgba(5, 5, 5, 0.5) 40%, rgba(5, 5, 5, 0.88) 100%);
    pointer-events: none;
    z-index: 1;
}

.ct-pdf-page--layout-bottom .ct-pdf-spread-copy {
    left: 50%;
    bottom: clamp(7.5%, 10vw, 12.5%);
    transform: translateX(-50%);
    text-align: center;
}

.ct-pdf-page--layout-top .ct-pdf-spread-copy {
    top: clamp(5%, 8vw, 10%);
    right: clamp(4%, 6vw, 8%);
    left: auto;
    bottom: auto;
    transform: none;
    width: min(52%, 640px);
    text-align: right;
}

.ct-pdf-spread-copy {
    position: absolute;
    width: min(94%, 920px);
    margin: 0;
    padding: 0 clamp(0.75rem, 3vw, 1.5rem);
    line-height: 1.3;
    pointer-events: none;
    z-index: 2;
    box-sizing: border-box;
}

[dir="rtl"] .ct-pdf-page--layout-top .ct-pdf-spread-copy {
    right: auto;
    left: clamp(4%, 6vw, 8%);
    text-align: left;
}

.ct-pdf-spread-copy__eyebrow {
    margin: 0 0 0.5rem;
    font-size: clamp(0.62rem, 1.2vw, 0.78rem);
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.85);
}

.ct-pdf-spread-copy__title {
    margin: 0 0 clamp(0.65rem, 2vw, 1rem);
    font-size: clamp(1.25rem, 4.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.9), 0 0 2px rgba(0, 0, 0, 0.8);
}

.ct-pdf-spread-copy__badge {
    display: inline-block;
    margin: 0;
    max-width: 100%;
    padding: 0.5rem clamp(1rem, 3vw, 1.65rem);
    font-size: clamp(0.72rem, 1.55vw, 1.02rem);
    font-weight: 600;
    line-height: 1.45;
    color: #fff;
    background: rgba(16, 48, 88, 0.94);
    border-radius: 999px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.ct-pdf-spread-copy__intro {
    margin: clamp(0.65rem, 2vw, 0.85rem) auto 0;
    max-width: 42rem;
    font-size: clamp(0.72rem, 1.35vw, 0.95rem);
    font-weight: 500;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9);
}

.ct-pdf-page--empty {
    padding: 4rem 0;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
}

/* Story pages — full-bleed media with copy overlay (sharp cover scaling) */
.ct-catalog-page--story {
    margin: 0;
    background: #0c1218;
    color: #0c1218;
}

.ct-catalog-page--story .ct-catalog-page__inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    position: relative;
    min-height: min(56.25vw, 92vh);
    isolation: isolate;
}

.ct-catalog-page--story .ct-catalog-page__media {
    grid-area: 1 / 1 / -1 / -1;
    position: relative;
    margin: 0;
    min-height: inherit;
    background: #1a2229;
    overflow: hidden;
}

.ct-catalog-page--story .ct-catalog-page__media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        105deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(12, 18, 24, 0.15) 45%,
        rgba(12, 18, 24, 0.42) 100%
    );
}

.ct-catalog-page--story.ct-catalog-page--layout-bottom .ct-catalog-page__media::after {
    background: linear-gradient(
        180deg,
        rgba(12, 18, 24, 0.04) 0%,
        rgba(12, 18, 24, 0.38) 58%,
        rgba(12, 18, 24, 0.7) 100%
    );
}

.ct-catalog-page--story .ct-catalog-page__media img:not(.ct-catalog-page__poster),
.ct-catalog-page--story .ct-catalog-page__media video {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    max-width: 100%;
    max-height: 100%;
    transform: none;
    object-fit: cover;
    object-position: center center;
}

.ct-catalog-page--story .ct-catalog-page__media--video {
    min-height: inherit;
}

.ct-catalog-page--story .ct-catalog-page__media--video .ct-catalog-page__poster {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.ct-catalog-page--story.ct-catalog-page--image-low .ct-catalog-page__inner {
    max-width: min(100vw, var(--ct-img-native-w, 100vw));
    margin-inline: auto;
}

/* Corporate landing — full image visible (contain), not cover crop */
.ct-catalog-page--pdf[data-ct-variant="corporate"] .ct-catalog-page--story .ct-catalog-page__media {
    background: #eef1f4;
}

.ct-catalog-page--pdf[data-ct-variant="corporate"] .ct-catalog-page--story .ct-catalog-page__media img:not(.ct-catalog-page__poster),
.ct-catalog-page--pdf[data-ct-variant="corporate"] .ct-catalog-page--story .ct-catalog-page__media video,
.ct-catalog-page--pdf[data-ct-variant="corporate"] .ct-pdf-page__figure--video .ct-pdf-page__video {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    max-width: 100%;
    max-height: 100%;
    transform: none;
    object-fit: cover;
    object-position: center center;
}

.ct-catalog-page--pdf[data-ct-variant="corporate"] .ct-pdf-page__figure img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center center;
    background: #eef1f4;
}

.ct-catalog-page--pdf[data-ct-variant="corporate"] .ct-catalog-page--story .ct-catalog-page__media::after {
    background: linear-gradient(
        105deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(12, 18, 24, 0.06) 40%,
        rgba(12, 18, 24, 0.32) 100%
    );
}

.ct-catalog-page--pdf[data-ct-variant="corporate"] .ct-catalog-page--story.ct-catalog-page--layout-bottom .ct-catalog-page__media::after {
    background: linear-gradient(
        180deg,
        rgba(12, 18, 24, 0) 0%,
        rgba(12, 18, 24, 0.22) 55%,
        rgba(12, 18, 24, 0.55) 100%
    );
}

.ct-catalog-page--story .ct-catalog-page__copy {
    grid-area: 1 / 1 / -1 / -1;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    justify-self: end;
    gap: clamp(0.65rem, 1.8vw, 1rem);
    width: min(100%, 34rem);
    max-width: 46%;
    margin: clamp(1.25rem, 3.5vw, 2.75rem);
    padding: clamp(1.35rem, 3vw, 2.25rem) clamp(1.25rem, 3vw, 2rem);
    background: rgba(244, 246, 248, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 4px;
    box-shadow: 0 12px 40px rgba(12, 18, 24, 0.18);
}

.ct-catalog-page--story.ct-catalog-page--layout-bottom .ct-catalog-page__copy {
    align-self: end;
    justify-self: center;
    width: min(100%, 44rem);
    max-width: calc(100% - 2.5rem);
    margin: clamp(1.25rem, 3.5vw, 2.5rem) auto;
    text-align: center;
    align-items: center;
}

.ct-catalog-page__catalog-label {
    margin: 0;
    font-size: clamp(0.68rem, 1.3vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #111d2a;
    text-transform: none;
}

.ct-catalog-page__eyebrow {
    margin: 0;
    font-size: clamp(0.62rem, 1vw, 0.76rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1e5983;
}

.ct-catalog-page__title {
    margin: 0;
    font-size: clamp(1.5rem, 3.8vw, 2.65rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #0c1218;
}

.ct-catalog-page__lead-tag {
    display: inline-block;
    margin: 0;
    max-width: 100%;
    padding: 0.55rem clamp(1rem, 2.5vw, 1.5rem);
    font-size: clamp(0.78rem, 1.35vw, 0.98rem);
    font-weight: 600;
    line-height: 1.45;
    color: #fff;
    background: #103058;
    border-radius: 999px;
}

.ct-catalog-page__intro {
    margin: 0;
    max-width: 36rem;
    font-size: clamp(0.82rem, 1.25vw, 0.98rem);
    line-height: 1.6;
    color: #111d2a;
}

.ct-catalog-page--story.ct-catalog-page--layout-bottom .ct-catalog-page__intro {
    margin-left: auto;
    margin-right: auto;
}

.ct-catalog-page__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.5rem;
    margin: 0.25rem 0 0;
    padding: 0;
    list-style: none;
}

.ct-catalog-page--story.ct-catalog-page--layout-bottom .ct-catalog-page__tags {
    justify-content: center;
}

.ct-catalog-page__tag {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0.4rem 0.75rem;
    font-size: clamp(0.68rem, 1.1vw, 0.82rem);
    font-weight: 600;
    line-height: 1.35;
    color: #0c1218;
    background: #fff;
    border: 1px solid rgba(30, 89, 131, 0.22);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(12, 18, 24, 0.06);
}

.ct-catalog-page__tag::before {
    content: "";
    display: inline-block;
    width: 0.45rem;
    height: 0.45rem;
    margin-right: 0.45rem;
    background: #1e5983;
    border-radius: 1px;
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .ct-catalog-page--story .ct-catalog-page__inner {
        min-height: min(88vh, 720px);
    }

    .ct-catalog-page--story .ct-catalog-page__copy {
        justify-self: stretch;
        align-self: end;
        width: auto;
        max-width: none;
        margin: 1rem;
        text-align: left;
        align-items: flex-start;
    }

    .ct-catalog-page--story.ct-catalog-page--layout-bottom .ct-catalog-page__copy {
        text-align: center;
        align-items: center;
    }
}

/* Catalog spreads stay edge-to-edge on all breakpoints */

/* Landing page navbar (replaces main site header on this page) */
.ct-catalog-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    height: var(--ct-catalog-nav-h);
    background: rgba(5, 5, 5, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.ct-catalog-nav__inner {
    --ct-nav-edge: clamp(0.75rem, 2.5vw, 1.5rem);
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--navbar-sector-gap);
    max-width: 1320px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding-inline: var(--ct-nav-edge);
    box-sizing: border-box;
}

.ct-catalog-nav__brand {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.ct-catalog-nav__brand img {
    height: 38px;
    width: auto;
    display: block;
}

.ct-catalog-nav__scroll {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.ct-catalog-nav__list {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: stretch;
    gap: 0.15rem;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.ct-catalog-nav__list li {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
}

.ct-catalog-nav__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 0.42rem 0.35rem;
    border-radius: 999px;
    font-size: clamp(0.72rem, 1.05vw, 0.88rem);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    border: 1px solid transparent;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ct-catalog-nav__link:hover,
.ct-catalog-nav__link.is-active {
    color: #fff;
    background: rgba(30, 89, 131, 0.22);
    border-color: rgba(30, 89, 131, 0.45);
}

.ct-catalog-nav__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    :root {
        --ct-catalog-nav-h: 60px;
    }

    .ct-catalog-nav__brand img {
        height: 34px;
    }

    .ct-catalog-nav__inner {
        --ct-nav-edge: clamp(0.5rem, 3vw, 1rem);
        --ct-nav-segment-gap: clamp(0.45rem, 2vw, 0.85rem);
    }

    .ct-catalog-nav__list {
        gap: 0.1rem;
    }

    .ct-catalog-nav__link {
        padding: 0.45rem 0.2rem;
        font-size: clamp(0.65rem, 2.8vw, 0.78rem);
    }

    .ct-catalog-nav__pdf .d-none {
        display: none !important;
    }

    .ct-catalog-nav__pdf {
        padding: 0.4rem 0.55rem !important;
    }
}

/* Cover */
.ct-cover {
    position: relative;
    min-height: calc(100vh - var(--ct-catalog-nav-h));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 0 4rem;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(30, 89, 131, 0.18), transparent 55%),
        linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ct-cover__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .ct-cover__inner {
        grid-template-columns: 1fr 1fr;
    }
}

.ct-cover__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1rem;
}

.ct-cover__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.ct-cover__lead {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.72);
    max-width: 520px;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.ct-cover__intro {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.58);
    max-width: 560px;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.ct-cover__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Personal / Corporate catalog switcher */
.ct-variant-switcher {
    display: flex;
    width: 100%;
    max-width: 420px;
    gap: 0.5rem;
    padding: 0.35rem;
    margin: 0 0 1.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.ct-variant-switcher__btn {
    flex: 1 1 50%;
    appearance: none;
    border: 0;
    cursor: pointer;
    min-height: 46px;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.68);
    background: transparent;
    transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

.ct-variant-switcher__btn:hover {
    color: #fff;
}

.ct-variant-switcher__btn.is-active {
    color: #fff;
    background: rgba(30, 89, 131, 0.55);
    box-shadow: 0 0 0 1px rgba(30, 89, 131, 0.65);
}

.ct-catalog-variant[hidden] {
    display: none !important;
}

/* PDF spread gallery (folder images) */
.ct-spreads {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1rem;
}

.ct-spread {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #0a0a0a;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.ct-spread img {
    display: block;
    width: 100%;
    height: auto;
}

.ct-cover__media {
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ct-cover__media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 10;
}

.ct-cover__legal {
    text-align: center;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 2rem 0 0;
    padding: 0 1rem;
}

/* Sections */
.ct-section {
    padding: 4.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ct-section:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.ct-section-head {
    margin-bottom: 2rem;
    position: relative;
    padding-left: 3.5rem;
}

.ct-section-head__page {
    position: absolute;
    left: 0;
    top: 0.15rem;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(30, 89, 131, 0.25);
    font-variant-numeric: tabular-nums;
}

.ct-section-head__kicker {
    font-size: 1.5rem;
    letter-spacing: 0.22em;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(30, 89, 131, 0.95);
    margin: 0 0 0.5rem;
}

.ct-section-head__title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    max-width: 720px;
}

.ct-lead,
.ct-body {
    font-size: 1.02rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    max-width: 720px;
}

.ct-body--center {
    text-align: center;
    margin-inline: auto;
}

.ct-section-footer {
    margin-top: 1.5rem;
    font-weight: 700;
    color: rgba(30, 89, 131, 0.95);
    letter-spacing: 0.04em;
}

/* Intro */
.ct-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .ct-intro {
        grid-template-columns: 1fr 1fr;
    }
}

.ct-intro__media {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ct-intro__media img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

/* Personal / Corporate tabs + card grid */
.ct-tabs {
    margin-top: 0.5rem;
}

.ct-tabs__bar {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.75rem;
}

.ct-tabs__btn {
    appearance: none;
    border: 0;
    cursor: pointer;
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.65);
    background: transparent;
    transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

.ct-tabs__btn:hover {
    color: #fff;
}

.ct-tabs__btn.is-active {
    color: #fff;
    background: rgba(30, 89, 131, 0.55);
    box-shadow: 0 0 0 1px rgba(30, 89, 131, 0.6);
}

.ct-tabs__panel {
    display: none;
}

.ct-tabs__panel.is-active {
    display: block;
}

.ct-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .ct-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1200px) {
    .ct-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ct-card {
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.2s, transform 0.2s;
}

.ct-card:hover {
    border-color: rgba(30, 89, 131, 0.45);
    transform: translateY(-3px);
}

.ct-card__media {
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #0a0a0a;
}

.ct-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ct-card__title {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
    padding: 0.85rem 1rem 1rem;
    color: rgba(255, 255, 255, 0.92);
}

/* Pillars */
.ct-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 576px) {
    .ct-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .ct-pillars {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ct-pillar {
    padding: 1.25rem 1.35rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.ct-pillar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(30, 89, 131, 0.2);
    margin-bottom: 0.85rem;
}

.ct-pillar__icon i {
    color: rgba(120, 180, 220, 1);
}

.ct-pillar__title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.4rem;
}

.ct-pillar__text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.5;
}

/* Checklist */
.ct-checklist {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.ct-checklist--cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
}

@media (min-width: 768px) {
    .ct-checklist--cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ct-checklist li {
    position: relative;
    padding-left: 1.35rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.45;
}

.ct-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(30, 89, 131, 0.95);
    box-shadow: 0 0 8px rgba(30, 89, 131, 0.5);
}

/* Goals & chips */
.ct-goals,
.ct-sectors,
.ct-chips,
.ct-screen-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.ct-goal-chip,
.ct-sector-chip,
.ct-chip,
.ct-screen-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    background: rgba(30, 89, 131, 0.15);
    border: 1px solid rgba(30, 89, 131, 0.35);
    color: rgba(255, 255, 255, 0.9);
}

.ct-notes {
    margin-top: 1.5rem;
    padding-left: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Split layouts */
.ct-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 0.5rem;
}

@media (min-width: 992px) {
    .ct-split {
        grid-template-columns: 1fr 1fr;
    }

    .ct-split--reverse .ct-split__text {
        order: 2;
    }

    .ct-split--reverse .ct-split__media {
        order: 1;
    }
}

.ct-split__media {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ct-split__media img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

/* Wrap cards */
.ct-wrap-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .ct-wrap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ct-wrap-card {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ct-wrap-card__img {
    margin: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.ct-wrap-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ct-wrap-card__label {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 1rem 1.25rem 0.35rem;
}

.ct-wrap-card__desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 1.25rem 1.25rem;
    line-height: 1.5;
}

/* Contact */
.ct-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Thank you */
.ct-thanks {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, transparent, rgba(30, 89, 131, 0.12));
}

.ct-thanks__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin: 0 0 0.5rem;
}

.ct-thanks__legal {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* --------------------------------------------------------------------------
   Mobile / narrow viewports — touch-friendly layout
   -------------------------------------------------------------------------- */

@media (max-width: 767.98px) {
    .ct-catalog-page {
        padding-bottom: max(3.5rem, calc(env(safe-area-inset-bottom, 0px) + 2.5rem));
    }

    .ct-catalog-page .r-container {
        padding-left: max(1rem, env(safe-area-inset-left, 0px) + 0.75rem);
        padding-right: max(1rem, env(safe-area-inset-right, 0px) + 0.75rem);
    }

    .ct-cover {
        min-height: 0;
        padding: 1.5rem 0 2.25rem;
    }

    .ct-cover__eyebrow {
        font-size: 0.65rem;
        letter-spacing: 0.2em;
    }

    .ct-cover__title {
        font-size: clamp(1.55rem, 7.5vw, 2.35rem);
    }

    .ct-cover__lead {
        font-size: 1rem;
    }

    .ct-cover__intro {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .ct-cover__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
    }

    .ct-cover__actions .btn {
        width: 100%;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }

    .ct-cover__inner {
        gap: 1.75rem;
    }

    .ct-cover__legal {
        margin: 1.25rem 0 0;
        font-size: 0.68rem;
    }

    .ct-pdf-page--layout-bottom .ct-pdf-spread-copy {
        bottom: clamp(6%, 9vw, 11%);
        width: min(96%, 100%);
    }

    .ct-pdf-page--layout-top .ct-pdf-spread-copy {
        top: clamp(4%, 7vw, 8%);
        right: clamp(3%, 5vw, 6%);
        width: min(92%, 100%);
    }

    .ct-pdf-spread-copy__title {
        font-size: clamp(1.1rem, 5.5vw, 1.85rem);
    }

    .ct-pdf-spread-copy__badge {
        font-size: clamp(0.68rem, 3.2vw, 0.88rem);
        padding: 0.45rem 0.9rem;
    }

    .ct-pdf-spread-copy__intro {
        font-size: clamp(0.68rem, 3vw, 0.86rem);
    }

    .ct-section {
        padding: 2.5rem 0;
    }

    .ct-section-head {
        padding-left: 0;
        margin-bottom: 1.5rem;
    }

    .ct-section-head__page {
        position: static;
        font-size: 1.6rem;
        margin-bottom: 0.4rem;
        display: block;
        top: auto;
        left: auto;
    }

    .ct-section-head__kicker {
        font-size: 0.65rem;
        letter-spacing: 0.18em;
    }

    .ct-section-head__title {
        font-size: clamp(1.25rem, 5vw, 1.85rem);
    }

    .ct-lead,
    .ct-body {
        font-size: 0.98rem;
        line-height: 1.6;
    }

    .ct-tabs__bar {
        display: flex;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border-radius: 14px;
        justify-content: stretch;
        padding: 0.3rem;
    }

    .ct-tabs__btn {
        flex: 1 1 50%;
        min-height: 48px;
        padding: 0.65rem 0.85rem;
        font-size: 0.84rem;
        touch-action: manipulation;
    }

    .ct-cards-grid {
        gap: 0.85rem;
    }

    .ct-card__title {
        font-size: 0.85rem;
        padding: 0.7rem 0.85rem 0.9rem;
    }

    .ct-pillars {
        gap: 0.85rem;
    }

    .ct-pillar {
        padding: 1.1rem 1.15rem;
    }

    .ct-wrap-card__label {
        font-size: 1rem;
        margin: 0.85rem 1rem 0.3rem;
    }

    .ct-wrap-card__desc {
        font-size: 0.86rem;
        margin: 0 1rem 1rem;
    }

    .ct-contact-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ct-contact-actions .btn {
        min-height: 48px;
        justify-content: center;
        touch-action: manipulation;
    }

    .ct-thanks {
        padding: 2.5rem 0 3.5rem;
    }

    .ct-goals,
    .ct-sectors,
    .ct-chips,
    .ct-screen-grid {
        gap: 0.5rem;
    }

    .ct-goal-chip,
    .ct-sector-chip,
    .ct-chip,
    .ct-screen-chip {
        font-size: 0.82rem;
        padding: 0.5rem 0.85rem;
    }
}

@media (max-width: 575.98px) {
    :root {
        /* Two rows of icon tabs; keep in sync with actual bar height */
        --ct-catalog-nav-h: 112px;
    }

    .ct-catalog-nav {
        height: auto;
        min-height: var(--ct-catalog-nav-h);
    }

    .ct-catalog-nav__inner {
        align-content: center;
        min-height: var(--ct-catalog-nav-h);
        padding-block: 0.45rem;
    }

    .ct-catalog-nav__scroll {
        overflow: visible;
    }

    .ct-catalog-nav__list {
        flex-wrap: wrap;
        row-gap: 0.35rem;
        column-gap: 0.15rem;
    }

    .ct-catalog-nav__list li {
        flex: 1 1 calc(50% - 0.15rem);
        min-width: 0;
        max-width: none;
    }

    .ct-catalog-nav__link {
        min-height: 40px;
        padding: 0.4rem 0.25rem;
        touch-action: manipulation;
    }

    .ct-catalog-nav__brand img {
        height: 32px;
    }

    .ct-catalog-nav__actions .btn {
        min-height: 44px;
        touch-action: manipulation;
    }

    .ct-cards-grid {
        grid-template-columns: 1fr;
    }

    .ct-card:hover {
        transform: none;
    }
}

@media (max-width: 420px) {
    :root {
        --ct-catalog-nav-h: 118px;
    }

    .ct-catalog-nav__inner {
        --ct-nav-segment-gap: 0.4rem;
    }
}
