/* ============================================================
   HEALIX – Shared Stylesheet
   ============================================================ */

/* ── 1. Variables ───────────────────────────────────────────── */
:root {
    --brand-primary: #035564;
    --brand-primary-dark: #034753;
    --brand-accent: #f9a826;
    --text-muted-custom: #6b7280;
    --surface-soft: #f7f8fa;
}

/* ── 2. Base ────────────────────────────────────────────────── */
body {
    font-family: 'Instrument Sans', sans-serif;
    color: #121826;
    background-color: #ffffff;
    margin: 0;
}

/* ── 3. Navigation ──────────────────────────────────────────── */
.subpage-header {
    background: linear-gradient(180deg, #1a5160 17%, #144452 78%);
    top: 0;
    z-index: 1000;
}

.subpage-header .site-nav {
    width: 100%;
    padding: 1.1rem 0;
}

.subpage-header .site-nav__inner {
    height: 100%;
    align-items: center;
}

.subpage-header .site-nav__brand,
.subpage-header .site-nav__links a {
	color: rgba(255, 255, 255, 0.82);
}

.subpage-header .site-nav__links a:hover {
    color: #fff;
}

.subpage-header .site-nav__burger span {
    background: #fff;
}



.site-nav__actions {
    gap: 0.5rem;
    display: flex;
}
.site-nav {
    position: relative;
    z-index: 100;
    padding: 1.1rem 0;
}

.site-nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.site-nav__brand {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav__brand svg {
    display: block;
}

.site-nav__brand:hover {
    color: rgba(255,255,255,0.85);
}

/* Collapse: flex row on desktop */
.site-nav__collapse {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 1rem;
}

.site-nav__links {
    display: flex;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    gap: 0.5rem;
    align-items: center;
}

.site-nav__links a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.4rem 0.85rem;
    white-space: nowrap;
}

.site-nav__links a:hover {
    color: #fff;
}

.site-nav__actions {
    flex-shrink: 0;
}

/* Burger – hidden on desktop */
.site-nav__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    flex-shrink: 0;
}

.site-nav__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
    transform-origin: center;
}

.site-nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav__burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.site-nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Responsive collapse ──────────────────────────────────── */
@media (max-width: 991px) {
    .site-nav__burger {
        display: flex;
        order: 2;
        margin-left: auto;
    }

    .site-nav__collapse {
        /* full-width row below brand/burger, collapsed by default */
        flex: none;
        width: 100%;
        order: 3;
        flex-direction: column;
        align-items: flex-start;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
    }

    .site-nav.is-open .site-nav__collapse {
        max-height: 260px;
        padding: 0.75rem 0 1.25rem;
    }

    .site-nav__links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
        margin: 0;
    }

    .site-nav__links li {
        width: 100%;
    }

    .site-nav__links a {
        display: block;
        font-size: 1rem;
        padding: 0.7rem 0.5rem;
        border-radius: 0.5rem;
        width: 100%;
    }

    .site-nav__actions {
        margin-top: 0.75rem;
        padding: 0 0.5rem;
    }
}

/* ── 4. Buttons ─────────────────────────────────────────────── */
.btn-pill {
    border-radius: 999px;
    padding: 0.8rem 1.25rem;
    font-weight: 600;
}
.btn-pill-small {
    border-radius: 999px;
    padding: 0.3rem 1rem;
    font-weight: 600;
}

.btn-pill-outline {
    border-radius: 999px;

    font-weight: 600;
    background: transparent;
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
}

.btn-pill-outline:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

/* Yellow/accent – hero CTA */
.btn-accent {
    background-color: var(--brand-accent);
    border-color: var(--brand-accent);
    color: #fff;
}

.btn-accent:hover {
    background-color: #e9981d;
    border-color: #e9981d;
    color: #fff;
}

/* Teal primary solid */
.btn-brand {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

.btn-brand:hover {
    background-color: var(--brand-primary-dark);
    border-color: var(--brand-primary-dark);
    color: #fff;
}

/* ── 5. Hero (index) ────────────────────────────────────────── */
.hero {
    position: relative;
    overflow: hidden;
    background-color: #014451;
    color: #fff;
}

.hero-video-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
}

.hero-video-layer video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
    background:
        radial-gradient(800px 360px at -10% 0%, rgba(0, 194, 213, 0.2), transparent 60%),
        radial-gradient(800px 360px at 105% 12%, rgba(0, 194, 213, 0.18), transparent 60%),
        linear-gradient(180deg, #035564 0%, #014451 100%);
}

.hero > *:not(.hero-video-layer) {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35em;
    background: rgba(249, 168, 38, 0.15);
    color: var(--brand-accent);
    border: 1px solid rgba(249, 168, 38, 0.45);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.32rem 0.9rem;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

.hero-slide-info-text {
    font-size: 17px;
    color: rgb(255 255 255 / 80%);
    margin: 0 auto;
    letter-spacing: 0.03em;
    max-width: 1140px;
    margin-top: 24px;
    min-height: 64px;
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.1;
    font-weight: 800;
}

.hero-image-wrap {
    margin-top: 6rem;
    position: relative;
    max-width: 1280px;
    margin-inline: auto;
}

.hero-swiper {
    padding-bottom: 2.4rem;
    overflow: visible;
}

.hero-fixed-frame {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(70vw, 1140px);
    aspect-ratio: 3 / 2;
    border-radius: 1rem;
    pointer-events: none;
    z-index: 3;
}

.hero-feature-btn {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    border-radius: 999px;
font-size: 0.875rem;
    font-weight: 500;
    padding: 0.42rem 1rem;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-feature-btn:hover {
    color: #fff;
}

.hero-feature-btn.active {
    color: #fff;
}

.hero-feature-bar-wrap {
    display: inline-flex;
    align-items: center;
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 0.3rem;
    max-width: 100%;
    backdrop-filter: blur(8px);
}

.hero-feature-bar {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: relative;
}

.hero-feature-bar::-webkit-scrollbar {
    display: none;
}

.hero-feature-indicator {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #008B9D;
    border-radius: 999px;
    z-index: 0;
    pointer-events: none;
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1),
                width 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, width;
}

.hero-feature-chevron {
    display: none;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: #fff;
    border-radius: 999px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    transition: background 0.2s;
}

.hero-feature-chevron--left {
    margin-right: 0.3rem;
}

.hero-feature-chevron--right {
    margin-left: 0.3rem;
}

.hero-feature-chevron:hover {
    background: rgba(255, 255, 255, 0.22);
}

.hero-feature-chevron.is-visible {
    display: flex;
}

@media (max-width: 768px) {
    .hero-feature-bar-wrap {
        max-width: calc(100vw - 2rem);
    }
}

.hero-slide {
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(3, 16, 24, 0.35);
    position: relative;
    cursor: pointer;
	background-color:#101010;
}

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

.hero-swiper .swiper-slide {
    width: min(70vw, 1140px);
    transform: scale(0.82);
    opacity: 0.5;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.hero-swiper .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
}

.hero-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 60%;
    padding: 5rem;
    color: #fff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #015b74b3 45%, rgb(1 54 74) 100%);
    opacity: 0;
    text-align: left;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-slide.show-caption .hero-caption {
    opacity: 1;
    transform: translateY(0);
}

.hero-caption p {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── 6. Page header (subpages) ──────────────────────────────── */
.page-header {
    position: relative;
    height: 400px;
    background-color: #014451;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.page-header-video {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.page-header-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.75;
    background:
        radial-gradient(800px 360px at -10% 0%, rgba(0, 194, 213, 0.2), transparent 60%),
        radial-gradient(800px 360px at 105% 12%, rgba(0, 194, 213, 0.18), transparent 60%),
        linear-gradient(180deg, #035564 0%, #014451 100%);
}

.page-header > *:not(.page-header-video):not(.page-header-overlay) {
    position: relative;
    z-index: 2;
}

.header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 1rem 2rem;
}

.header-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.header-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}

/* ── 7. Logo cloud / marquee ────────────────────────────────── */
.logo-cloud {
    overflow: hidden;
    padding: 4.5rem 0;
    background: #fff;
}

.logos-layout {
    display: grid;
    grid-template-columns: minmax(280px, 34%) 1fr;
    align-items: center;
    gap: 2rem;
}

.logos-copy {
    display: flex;
    justify-content: center;
}

.logos-copy h2 {
    margin: 0;
    color: #121826;
    font-size: clamp(1.5rem, 2.8vw, 2.375rem);
    font-weight: 500;
    line-height: 1.2;
    max-width: 32rem;
}

.logos-marquees {
    position: relative;
    overflow: hidden;
    margin-right: -6vw;
    padding-right: 6vw;
}

.logos-marquees::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    transform: translateZ(0);
    background: linear-gradient(to right, #fff 0%, rgba(255,255,255,0.65) 14%, rgba(255,255,255,0.15) 42%, transparent 72%, transparent 100%);
}

.logos-row {
    width: 100%;
    overflow: hidden;
    padding-bottom: 1rem;
}

.logos-track {
    width: max-content;
    display: flex;
    align-items: center;
    will-change: transform;
}

.logos-track.is-forward {
    animation: logos-scroll-left 26s linear infinite;
}

.logos-track.is-reverse {
    animation: logos-scroll-right 26s linear infinite;
    margin-left: 5rem;
}

.logos-list {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: 1rem;
}

.logos-pill {
    background: #fff;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    box-shadow: 0 4px 6px -2px rgba(235, 230, 250, 0.03), 0 12px 16px -4px rgba(235, 230, 250, 0.4);
}

.logos-pill img {
    min-width: 7rem;
    max-height: 2.75rem;
    width: auto;
    object-fit: contain;
}

@keyframes logos-scroll-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes logos-scroll-right {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

/* ── 8. Utilities ───────────────────────────────────────────── */
.section-space   { padding: 5rem 0; }
.section-space-l { padding: 7rem 0; }
.text-muted-custom { color: var(--text-muted-custom); }
.rounded-xl { border-radius: 0.9rem; }

.mb-10 { margin-bottom: 6rem !important; }
.py-10 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

@media (max-width: 768px) {
    .py-10 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}


/* ── 9. Video strip ─────────────────────────────────────────── */
.video-strip {
    background-image: url(./bg-repeat.png);
    background-position: center center;
    background-repeat: repeat-x;
    padding: 4.5rem 0;
}

.video-card {
    position: relative;
    border-radius: 0.9rem;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.video-card > img,
.video-card > video {
    display: block;
    width: 100%;
    height: auto;
}

.play-btn {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.play-circle {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.86);
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    color: var(--brand-primary);
}

/* ── 10. Feature cards ──────────────────────────────────────── */
.feature-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 1rem;
    padding: 2rem 1.75rem;
    height: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 8px 32px rgba(3, 85, 100, 0.10);
    transform: translateY(-3px);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(3, 85, 100, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    font-size: 1.35rem;
    color: #025564;
}

.feature-card h5 {
font-size: 1.25rem;
    margin-bottom: 0.45rem;
    color: #121826;
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-muted-custom);
    line-height: 1.55;
    margin: 0;
}

/* ── 11. Pricing ────────────────────────────────────────────── */
.pricing-section {
    background: var(--surface-soft);
    padding: 6rem 0;
}

.pricing-note {
    font-size: 13px;
    color: var(--text-muted-custom);
}

.pricing-card {
    background: #fff;
    border: 1px solid rgb(240 240 240);
    border-radius: 1.25rem;
    padding: 2.25rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease;
}

.pricing-card:hover {
    box-shadow: 0 12px 40px rgba(3, 16, 24, 0.10);
}

.pricing-card.is-featured {
    border-color: var(--brand-primary);
    box-shadow: 0 12px 48px rgba(3, 85, 100, 0.18);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -0.85rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.28rem 1rem;
    border-radius: 999px;
    white-space: nowrap;
}

.pricing-tier {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1;
    color: #121826;
}

.pricing-price sup {
    font-size: 1.2rem;
    font-weight: 700;
    vertical-align: super;
    line-height: 1;
}

.pricing-price small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted-custom);
}

.pricing-desc {
    font-size: 1rem;
    color: var(--text-muted-custom);
    margin: 0.6rem 0 1.5rem;
}

.pricing-divider {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    margin: 1.5rem 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    flex: 1;
}

.pricing-features li {
    font-size: 0.9rem;
    color: #374151;
    padding: 0.38rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--brand-primary);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

.pricing-features li.disabled { color: #9ca3af; }
.pricing-features li.disabled::before { content: '–'; color: #d1d5db; }

/* ── 12. Special ────────────────────────────────────────────── */
.special-card {
    background: #fff;
    border: 1px solid rgb(240 240 240);
    border-radius: 1.25rem;
    padding: 2.5rem 2.5rem;
    transition: box-shadow 0.2s ease;
}

.special-card:hover {
    box-shadow: 0 12px 40px rgba(3, 16, 24, 0.10);
}

.special-left {
    padding-right: 2.5rem;
}

.special-right {
    padding-left: 2.5rem;
    border-left: 1px solid rgba(0, 0, 0, 0.07);
}

@media (max-width: 991.98px) {
    .special-left {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    .special-right {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.07);
        padding-top: 2rem;
    }
}

/* ── 13. FAQ ────────────────────────────────────────────────── */
.faq-wrap .accordion-item {
    border-radius: 1.25rem !important;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    margin-bottom: 0.85rem;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-wrap .accordion-item:hover {
border-color: rgb(2 85 100) !important;
    box-shadow: 0 0 0 1px rgba(3, 85, 100, 0.15);
}

.faq-wrap .accordion-button {
    min-height: 80px;
    font-size: 1rem;
    font-weight: 700;
    color: #131a2b;
    background: #fff;
    box-shadow: none !important;
    padding: 1rem 1.2rem;
    gap: 0.9rem;
}

.faq-wrap .accordion-button::after {
    margin-left: auto;
    flex-shrink: 0;
}

.faq-wrap .accordion-button:focus {
    box-shadow: none !important;
}

.faq-icon {
    width: 1.8rem;
    height: 1.8rem;
    min-width: 1.8rem;
    border-radius: 999px;
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
    display: inline-grid;
    place-items: center;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
}

.faq-label { text-align: left; }

.faq-next-wrap {
    margin-top: 1.1rem;
    display: flex;
    justify-content: flex-start;
}

.faq-next-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: 1.5px solid var(--brand-primary);
    color: var(--brand-primary);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.faq-next-btn:hover {
    background: var(--brand-primary);
    color: #fff;
}

/* ── 13. Support section ────────────────────────────────────── */
.support-section { padding-bottom: 5rem; }

/* ── 14. Mini CTA bar ───────────────────────────────────────── */
.mini-cta {
    background: linear-gradient(135deg, #023f4e 0%, #035564 60%, #046678 100%);
    color: #fff;
}

.mini-cta-dock {
    position: fixed;
    left: 50%;
    bottom: 1.25rem;
    transform: translateX(-50%) translateY(130%);
    width: min(1140px, calc(100% - 2rem));
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.mini-cta-dock.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.mini-cta-dock .mini-cta {
    border-radius: 1.25rem;
    padding: 0.875rem 1.375rem;
    box-shadow: 0 20px 60px rgba(2, 20, 28, 0.35), 0 6px 20px rgba(2, 20, 28, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-cta-dock__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mini-cta-dock__info {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    min-width: 0;
    flex: 1;
}

.mini-cta-dock__copy {
    min-width: 0;
}

.mini-cta-dock__copy strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.mini-cta-dock__copy p {
    font-size: 0.8125rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-cta-dock__actions {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-shrink: 0;
}

.logo-icon-large {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22), 0 1px 4px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.mini-cta-close {
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
    display: inline-grid;
    place-items: center;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.mini-cta-close:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

@media (max-width: 575px) {
    .mini-cta-dock {
        bottom: 0.75rem;
        width: calc(100% - 1.5rem);
    }
    .mini-cta-dock .mini-cta {
        padding: 0.75rem 1rem;
        border-radius: 1rem;
    }
    .logo-icon-large {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 10px;
    }
    .logo-icon-large svg {
        width: 28px;
        height: 28px;
    }
    .mini-cta-dock__copy p {
        font-size: 0.75rem;
        white-space: normal;
    }
}

/* ── 15. Contact form ───────────────────────────────────────── */
.contact-section { padding: 5rem 0 6rem; }

.contact-copy h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.contact-copy p {
    color: var(--text-muted-custom);
    font-size: 1rem;
    line-height: 1.65;
}

.reach-list {
    list-style: none;
    padding: 0;
    margin: 1.75rem 0 0;
}

.reach-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #374151;
    margin-bottom: 0.8rem;
}

.reach-icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.6rem;
    background: rgba(3, 85, 100, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-form-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 1.25rem;
    padding: 2.5rem 2.25rem;
    box-shadow: 0 8px 40px rgba(3, 16, 24, 0.07);
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.35rem;
}

.form-control,
.form-select {
    border: 1px solid #e5e7eb;
    border-radius: 0.6rem;
    padding: 0.65rem 0.9rem;
    font-size: 0.95rem;
    font-family: inherit;
    color: #121826;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(3, 85, 100, 0.12);
    outline: none;
}

.form-control::placeholder { color: #9ca3af; }

.interest-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.interest-chip input[type="checkbox"] { display: none; }

.interest-chip label {
    display: inline-block;
    padding: 0.42rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    user-select: none;
    transition: border-color 0.18s, background 0.18s, color 0.18s;
}

.interest-chip input[type="checkbox"]:checked + label {
    border-color: var(--brand-primary);
    background: var(--brand-primary);
    color: #fff;
}

.interest-chip label:hover { border-color: var(--brand-primary); color: var(--brand-primary); }
.interest-chip input[type="checkbox"]:checked + label:hover { color: #fff; }

.other-field { display: none; margin-top: 0.75rem; }
.other-field.is-visible { display: block; }

.faq-section {
    padding: 5.5rem 0 6rem;
    background: var(--surface-soft);
}

.section-label {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
}

.section-subline {
    font-size: clamp(1.05rem, 1.3vw + 0.6rem, 1.35rem);
    line-height: 1.55;
    color: #444;
}

/* ── 16. Footer ─────────────────────────────────────────────── */
.footer-main { background: #f5f6f8; }

.footer-link {
    color: rgba(0, 0, 0, 0.72);
    text-decoration: none;
    transition: text-decoration-color 0.15s;
}

.footer-link:hover {
    color: rgba(0, 0, 0, 0.72);
    text-decoration: underline;
}

.footer-muted {
    color: rgba(0, 0, 0, 0.45);
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.footer-social-link:hover {
    background: rgba(0, 0, 0, 0.12);
    color: rgba(0, 0, 0, 0.9);
}

.footer-divider {
    border-color: rgba(0, 0, 0, 0.08);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.4);
    margin: 0;
}

/* ── 16b. 404 page ─────────────────────────────────────────── */
.page-full {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.notfound-main {
    flex: 1;
    display: flex;
}

.notfound-section {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4.5rem 0 5.5rem;
    background:
        radial-gradient(680px 280px at 12% 18%, rgba(3, 85, 100, 0.08), transparent 60%),
        radial-gradient(680px 280px at 88% 10%, rgba(249, 168, 38, 0.12), transparent 58%),
        linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}



.notfound-copy {
    max-width: 42rem;
}

.notfound-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(3, 85, 100, 0.08);
    color: var(--brand-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}


.notfound-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.notfound-actions .btn-pill-outline {
    padding: 0.8rem 1.25rem;
}

.notfound-card {
    position: relative;
    padding: 2rem;
    border-radius: 1.5rem;
    background: linear-gradient(180deg, #035564 0%, #023943 100%);
    color: #fff;
    box-shadow: 0 24px 70px rgba(2, 32, 39, 0.22);
    overflow: hidden;
}

.notfound-card::before {
    content: "";
    position: absolute;
    inset: auto -5rem -5rem auto;
    width: 13rem;
    height: 13rem;
    border-radius: 50%;
    background: rgba(249, 168, 38, 0.18);
    filter: blur(8px);
}

.notfound-card__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.32rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.notfound-code {
    font-size: clamp(4.5rem, 10vw, 7rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.06em;
    margin: 1rem 0 0.65rem;
    color: #fff;
}

.notfound-card__text {
    position: relative;
    z-index: 1;
    margin: 0 0 1.35rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
}

.notfound-links {
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.notfound-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.8rem 0.95rem;
    border-radius: 0.9rem;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.notfound-links a::after {
    content: ">";
    color: var(--brand-accent);
    font-weight: 700;
}

.notfound-links a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}

/* ── 17. Responsive ─────────────────────────────────────────── */
@media (max-width: 992px) {
    .hero-fixed-frame { width: min(76vw, 720px); }

    .hero-swiper .swiper-slide {
        width: min(76vw, 720px);
        transform: scale(0.9);
        opacity: 0.55;
    }

    .hero-swiper .swiper-slide-active {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .hero-fixed-frame { display: none; }

    .hero-swiper .swiper-slide {
        width: 82vw;
        transform: scale(0.92);
        opacity: 0.45;
    }

    .hero-swiper .swiper-slide-active {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .logo-cloud { padding: 3rem 0; }

    .notfound-section {
        padding: 3rem 0 4rem;
    }

    .notfound-shell {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .notfound-card {
        padding: 1.5rem;
    }

    .logos-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .logos-copy { text-align: center; }

    .logos-marquees {
        margin-right: -1.25rem;
        margin-left: -1.25rem;
        padding-right: 0;
    }

    .logos-track.is-reverse { margin-left: 2.5rem; }
    .logos-pill { padding: 0.85rem 1.5rem; }
}

@media (max-width: 767px) {
    .page-header {
        height: auto;
        min-height: 300px;
    }

    .contact-form-card { padding: 1.75rem 1.25rem; }

    .notfound-title {
        font-size: clamp(2.1rem, 10vw, 3rem);
    }

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

    .notfound-actions a {
        width: 100%;
        text-align: center;
    }
}
