/* ============================================================
   SCISMIC LANDING PAGE — landing.css
   ============================================================ */

/* ── Tokens ── */
:root {
    --scismic-darkblue: #01192c;
    --navy: #0b1f34;
    --blue: #0082cb;
    --yellow: #ffd040;
    --teal: #00c6be;
    --purple: #7c5cbf;
    --bg-light: #f4f6f9;
    --text-muted-light: #6b7280;
    --card-radius: 0.75rem;
    --transition: 0.25s ease;
}

/* ── Reset helpers ── */
.landing-page * {
    box-sizing: border-box;
}
.landing-page a {
    text-decoration: none;
}
.landing-page ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ── Section spacing ── */
.landing-section {
    padding: 5rem 0;
}
@media (max-width: 768px) {
    .landing-section {
        padding: 3.5rem 0;
    }
}

/* ═══════════════════════════════════════════════════════════
   1. HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
    background: var(--scismic-darkblue);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 5vh 0 3.75rem;
}
.hero::before {
    content: "";
    background: radial-gradient(
        circle,
        rgba(0, 130, 203, 0.18) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}
.hero-eyebrow {
    display: inline-block;
    background: rgba(255, 208, 64, 0.15);
    color: var(--yellow);
    font-size: 1em;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.375rem 1rem;
    border-radius: 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 208, 64, 0.3);
}
.hero h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 2.5em;
    font-weight: 600;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 1.5rem;
}
.hero h1 .accent {
    color: var(--yellow);
}

/* Cycling yellow highlight: line 1 → 2 → 3 → repeat */
.hero-line {
    color: #fff;
    animation: lineHighlight 4.5s ease-in-out infinite;
}
.hero-line-1 {
    animation-delay: 0s;
}
.hero-line-2 {
    animation-delay: 1.5s;
}
.hero-line-3 {
    animation-delay: 3s;
}

@keyframes lineHighlight {
    0%,
    28% {
        color: var(--yellow);
    }
    35% {
        color: #fff;
    }
    100% {
        color: #fff;
    }
}
.hero-sub {
    font-size: clamp(0.9375rem, 1.6vw, 1.125rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 32.5rem;
    margin-bottom: 2.25rem;
}
.hero-sub-link {
    color: var(--yellow);
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 208, 64, 0.4);
    transition: var(--transition);
}
.hero-sub-link:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.btn-hero-primary {
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}
.btn-hero-primary:hover {
    background: #006aab;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 130, 203, 0.35);
}
.btn-hero-secondary {
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.8125rem 2rem;
    border-radius: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}
.btn-hero-secondary:hover {
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-stat-item {
    color: #fff;
}
.hero-stat-num {
    font-size: 2.5em;
    font-weight: 600;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.25rem;
    max-width: 8.75rem;
    line-height: 1.4;
}
.hero-stat-sub {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Hero hub diagram */
.hero-hub {
    position: relative;
    width: 26.25rem;
    height: 26.25rem;
    margin: 2.5rem auto 0;
}
.hero-hub-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-hub-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20rem;
    height: 20rem;
    margin: -10rem 0 0 -10rem;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    z-index: 0;
}
.hero-hub-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6rem;
    height: 6rem;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 0 0 10px rgba(255, 208, 64, 0.15);
}
.hero-hub-label {
    font-family: "Montserrat", sans-serif;
    font-size: 0.625rem;
    font-weight: 900;
    color: var(--scismic-darkblue);
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.5px;
}
.hero-hub-node {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}
.hero-hub-node img {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
}
.hero-hub-node span {
    font-size: 0.625rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
/* Node positions: 120° apart, radius ~160px */
.hero-hub-node-1 {
    transform: translate(calc(-50% + 0rem), calc(-50% - 10rem));
}
.hero-hub-node-2 {
    transform: translate(calc(-50% - 8.625rem), calc(-50% + 5rem));
}
.hero-hub-node-3 {
    transform: translate(calc(-50% + 8.625rem), calc(-50% + 5rem));
}

@media (max-width: 991px) {
    .hero-hub {
        width: 18.75rem;
        height: 18.75rem;
    }
    .hero-hub-orbit {
        width: 13.75rem;
        height: 13.75rem;
        margin: -6.875rem 0 0 -6.875rem;
    }
    .hero-hub-center {
        width: 4.5rem;
        height: 4.5rem;
    }
    .hero-hub-node img {
        width: 3.75rem;
        height: 3.75rem;
    }
    .hero-hub-node-1 {
        transform: translate(calc(-50% + 0rem), calc(-50% - 6.875rem));
    }
    .hero-hub-node-2 {
        transform: translate(calc(-50% - 5.9375rem), calc(-50% + 3.4375rem));
    }
    .hero-hub-node-3 {
        transform: translate(calc(-50% + 5.9375rem), calc(-50% + 3.4375rem));
    }

    .hero-line .hero-line-1 .hero-line-2 .hero-line-3 {
        font-size: 10px !important;
    }
}

/* Hero image carousel */
.hero-img-carousel {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    height: 300px;
    box-shadow:
        0 0 0 2px rgba(0, 130, 203, 0.45),
        0 8px 32px rgba(0, 130, 203, 0.3),
        0 24px 64px rgba(0, 130, 203, 0.15);
}
.hero-carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}
.hero-carousel-img.active {
    opacity: 1;
}
@media (min-width: 992px) {
    .hero-img-carousel {
        height: 460px;
    }
}

/* ═══════════════════════════════════════════════════════════
   2. TRUSTED BY
   ═══════════════════════════════════════════════════════════ */
.trusted-by {
    background: #fff;
    padding: 4rem 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}
.trusted-by-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 3rem;
}

/* Row container: clips tracks and holds edge fade overlays */
.marquee-rows {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.marquee-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 8rem;
    z-index: 10;
    pointer-events: none;
}
.marquee-fade--left {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}
.marquee-fade--right {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.marquee-wrap {
    overflow: hidden;
}
.marquee-track {
    display: flex;
    width: max-content;
}
.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-track--left {
    animation: marqueeLeft 40s linear infinite;
}
.marquee-track--right {
    animation: marqueeRight 35s linear infinite;
}
.marquee-track--left-slow {
    animation: marqueeLeft 50s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    height: 4rem;
    padding: 0 2.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #9ca3af;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color var(--transition);
}
.marquee-item:hover {
    color: #4b5563;
}

@keyframes marqueeLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}
@keyframes marqueeRight {
    0% {
        transform: translateX(-33.333%);
    }
    100% {
        transform: translateX(0);
    }
}

/* ═══════════════════════════════════════════════════════════
   3. ECOSYSTEM
   ═══════════════════════════════════════════════════════════ */
.ecosystem {
    background: #fff;
}
.ecosystem-eyebrow {
    font-size: 1em;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 1rem;
    text-align: left;
}
.ecosystem-heading {
    font-family: "Montserrat", sans-serif;
    font-size: 3em;
    font-weight: 400;
    color: var(--scismic-darkblue);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
@media (max-width: 575.98px) {
    .ecosystem-heading,
    .ecosystem-sub {
        text-align: center;
    }
}
.ecosystem-sub {
    color: var(--text-muted-light);
    font-size: 1.15em;
    line-height: 1.8;
}

/* Hub diagram */
.eco-hub-row {
    margin-bottom: 5em;
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.hub-diagram {
    position: relative;
    width: 27.5rem;
    height: 27.5rem;
    margin: 0 auto;
}
@media (max-width: 520px) {
    .hub-diagram {
        width: 20rem;
        height: 20rem;
    }
}

/* SVG connecting lines sit behind everything */
.hub-lines-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Center hub */
.hub-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6.5rem;
    height: 6.5rem;
    background: linear-gradient(145deg, #0082cb, #005fa3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 10px rgba(0, 130, 203, 0.1),
        0 0 0 20px rgba(0, 130, 203, 0.05),
        0 8px 28px rgba(0, 82, 160, 0.35);
    z-index: 2;
}
.hub-center-label {
    font-family: "Montserrat", sans-serif;
    font-size: 0.6875rem;
    font-weight: 900;
    color: #fff;
    text-align: center;
    line-height: 1.35;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Spoke circles */
.hub-spoke {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8.5rem;
    height: 8.5rem;
    margin: -4.25rem 0 0 -4.25rem;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e8edf5;
    border-top: 3px solid var(--spoke-accent, var(--blue));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.1);
    transition:
        box-shadow var(--transition),
        transform var(--transition),
        border-color var(--transition);
    gap: 0.5rem;
    z-index: 2;
}
.hub-spoke:hover {
    box-shadow: 0 12px 40px rgba(0, 130, 203, 0.18);
    transform: translate(var(--tx), var(--ty)) scale(1.06);
}
.hub-spoke span {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--scismic-darkblue);
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.3px;
}
.hub-spoke img,
.hub-spoke svg {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    color: var(--spoke-accent, var(--blue));
}

.hub-spoke-1 {
    --tx: -8.75rem;
    --ty: -8.75rem;
    --spoke-accent: #0082CB;
    transform: translate(-8.75rem, -8.75rem);
}
.hub-spoke-2 {
    --tx: 8.75rem;
    --ty: -8.75rem;
    --spoke-accent: #FFD040;
    transform: translate(8.75rem, -8.75rem);
}
.hub-spoke-3 {
    --tx: -8.75rem;
    --ty: 8.75rem;
    --spoke-accent: #201747;
    transform: translate(-8.75rem, 8.75rem);
}
.hub-spoke-4 {
    --tx: 8.75rem;
    --ty: 8.75rem;
    --spoke-accent: #F37021;
    transform: translate(8.75rem, 8.75rem);
}

@media (max-width: 520px) {
    .hub-spoke {
        width: 6rem;
        height: 6rem;
        margin: -3rem 0 0 -3rem;
    }
    .hub-spoke img,
    .hub-spoke svg {
        width: 1.75rem;
        height: 1.75rem;
    }
    .hub-spoke span {
        font-size: 0.5rem;
    }
    .hub-spoke-1 {
        --tx: -6.25rem;
        --ty: -6.25rem;
        transform: translate(-6.25rem, -6.25rem);
    }
    .hub-spoke-2 {
        --tx: 6.25rem;
        --ty: -6.25rem;
        transform: translate(6.25rem, -6.25rem);
    }
    .hub-spoke-3 {
        --tx: -6.25rem;
        --ty: 6.25rem;
        transform: translate(-6.25rem, 6.25rem);
    }
    .hub-spoke-4 {
        --tx: 6.25rem;
        --ty: 6.25rem;
        transform: translate(6.25rem, 6.25rem);
    }
    .hub-center {
        width: 4.75rem;
        height: 4.75rem;
    }
    .hub-center-label {
        font-size: 0.5625rem;
    }
}

/* Stakeholder rows */
.hiw-heading {
    font-family: "Montserrat", sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--scismic-darkblue);
    padding-bottom: 0.875rem;
    border-bottom: 3px solid var(--blue);
    display: inline-block;
    margin-bottom: 1.75rem;
}
.eco-stakeholder {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    border-radius: var(--card-radius);
    background: #fafbfc;
    transition: var(--transition);
}
.eco-stakeholder:hover {
    background: #f0f7ff;
}
.eco-stakeholder-accent {
    flex-shrink: 0;
    width: 4px;
    height: 3.25rem;
    border-radius: 0.25rem;
    margin-top: 0.125rem;
}
.eco-stakeholder-type {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--scismic-darkblue);
    margin-bottom: 2px;
}
.eco-stakeholder-product {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 2px;
}
.eco-stakeholder-desc {
    font-size: 0.75rem;
    color: var(--text-muted-light);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   4. PRODUCT CARDS
   ═══════════════════════════════════════════════════════════ */
.products {
    background: var(--bg-light);
}

.product-card {
    background: #fff;
    border-radius: var(--card-radius);
    padding: 1.75rem;
    height: 100%;
    border-top: 4px solid var(--blue);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
/* Card 2: Scismic Yellow #FFD040 */
.product-card.accent-yellow {
    border-top-color: #FFD040;
}
.product-card.accent-yellow .card-icon-box {
    background: rgba(255, 208, 64, 0.15);
}
.product-card.accent-yellow .card-icon-box svg {
    color: #8a6200;
}
.product-card.accent-yellow .product-card-tagline {
    color: #8a6200;
}
.product-card.accent-yellow .product-card-checklist li::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7' cy='7' r='7' fill='%238a6200'/%3E%3Cpath d='M3.5 7l2.5 2.5 4.5-4.5' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Card 3: Deep Navy #201747 */
.product-card.accent-navy {
    border-top-color: #201747;
}
.product-card.accent-navy .card-icon-box {
    background: rgba(32, 23, 71, 0.08);
}
.product-card.accent-navy .card-icon-box svg {
    color: #201747;
}
.product-card.accent-navy .product-card-tagline {
    color: #201747;
}
.product-card.accent-navy .product-card-checklist li::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7' cy='7' r='7' fill='%23201747'/%3E%3Cpath d='M3.5 7l2.5 2.5 4.5-4.5' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Card 4: Coral Orange #F37021 */
.product-card.accent-coral {
    border-top-color: #F37021;
}
.product-card.accent-coral .card-icon-box {
    background: rgba(243, 112, 33, 0.1);
}
.product-card.accent-coral .card-icon-box svg {
    color: #F37021;
}
.product-card.accent-coral .product-card-tagline {
    color: #F37021;
}
.product-card.accent-coral .product-card-checklist li::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7' cy='7' r='7' fill='%23F37021'/%3E%3Cpath d='M3.5 7l2.5 2.5 4.5-4.5' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Card header row */
.product-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.875rem;
}
.product-badge {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 1.25rem;
}
.badge-blue {
    background: rgba(0, 130, 203, 0.1);
    color: var(--blue);
}
.badge-yellow {
    background: rgba(255, 208, 64, 0.15);
    color: #7a5500;
}
.badge-teal {
    background: rgba(0, 198, 190, 0.1);
    color: #003d38;
}
.badge-purple {
    background: rgba(124, 92, 191, 0.1);
    color: var(--purple);
}

.product-card-btn {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.375rem 0.875rem;
    border-radius: 0.25rem;
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
}
.btn-blue {
    background: var(--blue);
    color: #fff;
}
.btn-blue:hover {
    background: #006aab;
    color: #fff;
}
.btn-teal {
    background: var(--teal);
    color: var(--scismic-darkblue);
}
.btn-teal:hover {
    background: #006b65;
    color: #fff;
}
.btn-yellow {
    background: var(--yellow);
    color: var(--scismic-darkblue);
}
.btn-yellow:hover {
    background: #f5c800;
    color: var(--scismic-darkblue);
}

.product-card-subtitle {
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted-light);
    margin-bottom: 6px;
}
.product-card-title {
    font-family: "Montserrat", sans-serif;
    font-size: 2em;
    font-weight: 600;
    color: var(--scismic-darkblue);
    margin-bottom: 1em;
}
.product-card-desc {
    font-size: 0.8125rem;
    color: var(--text-muted-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.product-card-enables {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--scismic-darkblue);
    margin-bottom: 0.625rem;
}

/* Checklist */
.product-card-checklist {
    margin-bottom: 1rem;
}
.product-card-checklist li {
    font-size: 0.8125rem;
    color: #374151;
    padding: 0.3125rem 0 0.3125rem 1.375rem;
    position: relative;
    line-height: 1.5;
}
.product-card-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5625rem;
    width: 0.875rem;
    height: 0.875rem;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7' cy='7' r='7' fill='%230082CB'/%3E%3Cpath d='M3.5 7l2.5 2.5 4.5-4.5' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Card header icon + label */
.card-header-meta {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}
.card-icon-box {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(0, 130, 203, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.card-icon-box svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #0082CB;
}
.card-header-label {
    font-size: 0.7em;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: black;
}
/* Card tagline */
.product-card-tagline {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0082CB;
    margin-bottom: 0.625rem;
}
/* Navy button */
.btn-navy {
    background: var(--scismic-darkblue);
    color: #fff;
}
.btn-navy:hover {
    background: #152d45;
    color: #fff;
}
/* Hire-in-3-steps */
.hire-steps {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0 0.5rem;
    flex-wrap: wrap;
}
.hire-steps-label {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #9ca3af;
    margin-right: 2px;
}
.hire-step {
    display: inline-flex;
    align-items: center;
    gap: 0.3125rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--scismic-darkblue);
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.125rem;
    height: 1.125rem;
    background: var(--blue);
    color: #fff;
    border-radius: 50%;
    font-size: 0.5625rem;
    font-weight: 400;
    flex-shrink: 0;
}
.hire-step-chevron {
    color: #9ca3af;
    font-size: 0.8125rem;
    line-height: 1;
}

/* Use cases */
.product-use-cases {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f0f2f5;
}
.use-cases-label {
    font-size: 0.625rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 0.625rem;
}
.use-case-item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.375rem;
}
.use-case-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--scismic-darkblue);
    white-space: nowrap;
    flex-shrink: 0;
}
.use-case-desc {
    font-size: 0.75rem;
    color: var(--text-muted-light);
    line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════
   5. CONTACT / CTA SECTION
   ═══════════════════════════════════════════════════════════ */
.cta-contact {
    background: ##f9fafb;
    position: relative;
    overflow: hidden;
}
.cta-contact::before {
    content: "";
    position: absolute;
    bottom: -9.375rem;
    left: -9.375rem;
    width: 31.25rem;
    height: 31.25rem;
    background: radial-gradient(
        circle,
        rgba(0, 130, 203, 0.2) 0%,
        transparent 70%
    );
    border-radius: 50%;
}
.cta-contact-eyebrow {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: black;
    margin-bottom: 0.75rem;
}
.cta-contact-heading {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.625rem, 3vw, 2.5rem);
    font-weight: 400;
    color: black;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}
.cta-contact-sub {
    color: black;
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Contact info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.contact-info-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-icon svg {
    width: 1.125rem;
    height: 1.125rem;
    fill: black;
}
.contact-info-label {
    font-size: 0.7em;
    color: black !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
    font-weight: 400;
}
.contact-info-value {
    font-size: 1em;
    font-weight: 400;
    color: lightslategray !important;
}
a.contact-info-value:hover {
    color: black;
}

/* Form card */
.landing-form-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2.25rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.landing-form-intro {
    font-size: 0.8125rem;
    color: var(--text-muted-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.lf-group {
    margin-bottom: 1rem;
}
.lf-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--scismic-darkblue);
    margin-bottom: 0.375rem;
}
.lf-group input,
.lf-group select,
.lf-group textarea {
    width: 100%;
    padding: 0.6875rem 1rem;
    border: 1.5px solid #e5eaf0;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: var(--scismic-darkblue);
    background: #fafbfc;
    transition: var(--transition);
    outline: none;
    font-family: inherit;
}
.lf-group input:focus,
.lf-group select:focus,
.lf-group textarea:focus {
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 130, 203, 0.12);
}
.lf-group textarea {
    resize: vertical;
    min-height: 5.625rem;
}
.btn-form-submit {
    width: 100%;
    padding: 0.875rem;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}
.btn-form-submit:hover {
    background: #006aab;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 130, 203, 0.4);
}

/* ═══════════════════════════════════════════════════════════
   6. GDPR COOKIE BANNER
   ═══════════════════════════════════════════════════════════ */
#sci-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
    padding: 1.25rem 1.5rem;
    display: none;
    border-top: 3px solid var(--blue);
}
#sci-cookie-banner.sci-visible {
    display: block;
}
.sci-cookie-inner {
    max-width: 75rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.sci-cookie-text {
    flex: 1;
    min-width: 15rem;
    font-size: 0.8125rem;
    color: #374151;
    line-height: 1.6;
}
.sci-cookie-text strong {
    color: var(--scismic-darkblue);
}
.sci-cookie-text a {
    color: var(--blue);
}
.sci-cookie-btns {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
}
.sci-btn-accept {
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 0.375rem;
    padding: 0.625rem 1.375rem;
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}
.sci-btn-accept:hover {
    background: #006aab;
}
.sci-btn-reject {
    background: #f3f4f6;
    color: var(--scismic-darkblue);
    border: 1.5px solid #d1d5db;
    border-radius: 0.375rem;
    padding: 0.5625rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}
.sci-btn-reject:hover {
    background: #e5e7eb;
}
.sci-btn-settings {
    background: transparent;
    color: var(--blue);
    border: 1.5px solid var(--blue);
    border-radius: 0.375rem;
    padding: 0.5625rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}
.sci-btn-settings:hover {
    background: rgba(0, 130, 203, 0.08);
}

/* Cookie modal */
#sci-cookie-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.55);
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}
#sci-cookie-modal.sci-visible {
    display: flex;
}
.sci-modal-box {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 32.5rem;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.sci-modal-box h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--scismic-darkblue);
    margin-bottom: 0.75rem;
}
.sci-modal-box p {
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.sci-cookie-cat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 0;
    border-top: 1px solid #f3f4f6;
}
.sci-cookie-cat-info strong {
    font-size: 0.875rem;
    color: var(--scismic-darkblue);
}
.sci-cookie-cat-info span {
    display: block;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.125rem;
}
.sci-toggle {
    position: relative;
    width: 2.75rem;
    height: 1.5rem;
    flex-shrink: 0;
}
.sci-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}
.sci-toggle-slider {
    position: absolute;
    inset: 0;
    background: #d1d5db;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}
.sci-toggle-slider::before {
    content: "";
    position: absolute;
    width: 1.125rem;
    height: 1.125rem;
    left: 0.1875rem;
    bottom: 0.1875rem;
    background: #fff;
    border-radius: 50%;
    transition: var(--transition);
}
.sci-toggle input:checked + .sci-toggle-slider {
    background: var(--blue);
}
.sci-toggle input:checked + .sci-toggle-slider::before {
    transform: translateX(1.25rem);
}
.sci-toggle input:disabled + .sci-toggle-slider {
    background: var(--blue);
    opacity: 0.6;
    cursor: not-allowed;
}
.sci-modal-actions {
    display: flex;
    gap: 0.625rem;
    margin-top: 1.5rem;
}
.sci-modal-actions .sci-btn-accept {
    flex: 1;
}
.sci-modal-actions .sci-btn-reject {
    flex: 1;
}

/* ─────────────────────────────────────────────────────────
   MAIN LANDING HERO — mobile centering (< lg)
───────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .hero h1,
    .hero .hero-eyebrow,
    .hero .hero-sub {
        text-align: center;
    }
    .hero .hero-sub {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .hero .hero-btns {
        justify-content: center;
    }
    .hero .hero-stats {
        justify-content: center;
    }
    .hero .hero-stat-item {
        text-align: center;
    }

    .hero-line {
        font-size: 0.7em !important;
    }
}

/* ─────────────────────────────────────────────────────────
   SUB-PAGE HEROES + SECTIONS — mobile centering (< md)
───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    /* Hero text */
    .emp-hero-h1,
    .edu-hero-h1,
    .eco-hero-h1 {
        text-align: center;
    }
    .emp-hero-sub,
    .edu-hero-sub,
    .eco-hero-sub {
        text-align: center;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .emp-pills {
        justify-content: center;
    }
    /* CTA buttons */
    .emp-cta-btn,
    .edu-cta-btn,
    .eco-cta-btn {
        display: flex;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    /* Section headings */
    .emp-eyebrow,
    .edu-eyebrow,
    .eco-eyebrow,
    .emp-section-h2,
    .edu-section-h2,
    .eco-section-h2 {
        text-align: center;
    }
    /* Stats row */
    .emp-stats {
        justify-content: center;
    }
    .emp-stat-item {
        text-align: center;
    }
    /* Contact section copy */
    .cta-contact-eyebrow,
    .cta-contact-heading,
    .cta-contact-sub {
        text-align: center;
    }
    .contact-info {
        align-items: center;
    }
    .contact-info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
}

/* ─────────────────────────────────────────────────────────
   CONTACT FORM — mobile spacing & padding
───────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    /* Gap between copy column and form column when stacked */
    .cta-contact .col-lg-6:first-child {
        margin-bottom: 0.5rem;
    }
}
@media (max-width: 576px) {
    .landing-form-card {
        padding: 1.75rem 1.25rem;
    }
    .cta-contact {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}
