:root {
    --thb-navy: #10263f;
    --thb-navy-soft: #173655;
    --thb-orange: #f57700;
    --thb-orange-dark: #d85f00;
    --thb-cream: #fff8ee;
    --thb-mist: #f5f8fb;
    --thb-green: #2f8a65;
    --thb-ink: #17202f;
    --thb-muted: #617085;
    --thb-line: #dbe5ef;
    --thb-shadow: 0 22px 60px rgba(16, 38, 63, 0.14);
}

.thb-home {
    color: var(--thb-ink);
    background: #fff;
    font-family: "Inter", "Figtree", "Mulish", sans-serif;
}

.thb-home img,
.thb-home video {
    max-width: 100%;
}

.thb-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--thb-navy);
    isolation: isolate;
}

.thb-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.thb-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.95);
}

.thb-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(16, 38, 63, 0.92) 0%, rgba(16, 38, 63, 0.78) 44%, rgba(16, 38, 63, 0.24) 100%),
        linear-gradient(0deg, rgba(16, 38, 63, 0.54), rgba(16, 38, 63, 0.06));
}

.thb-hero__content {
    max-width: 780px;
    padding: 160px 0 82px;
    color: #fff;
}

.thb-eyebrow {
    margin: 0 0 14px;
    color: var(--thb-orange);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.thb-hero h1,
.thb-section h2 {
    letter-spacing: 0;
}

.thb-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.6rem, 6vw, 5.8rem);
    line-height: 0.98;
    font-weight: 850;
}

.thb-hero__intro {
    max-width: 650px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.18rem;
    line-height: 1.72;
}

.thb-hero__actions,
.thb-video-card__copy .thb-btn {
    margin-top: 34px;
}

.thb-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.thb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 8px;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.thb-btn:hover,
.thb-link:hover {
    transform: translateY(-2px);
}

.thb-btn--primary {
    background: var(--thb-orange);
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(245, 119, 0, 0.28);
}

.thb-btn--primary:hover {
    background: var(--thb-orange-dark);
    color: #fff !important;
}

.thb-btn--secondary {
    background: #fff;
    color: var(--thb-navy) !important;
}

.thb-btn--ghost {
    border: 1px solid rgba(255, 255, 255, 0.34);
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08);
}

.thb-hero__trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 720px;
    margin: 42px 0 0;
}

.thb-hero__trust div {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.thb-hero__trust dt {
    color: #fff;
    font-size: 1.08rem;
    font-weight: 850;
}

.thb-hero__trust dd {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.74);
}

.thb-section {
    padding: 92px 0;
}

.thb-section--soft {
    background: var(--thb-mist);
}

.thb-section__heading {
    max-width: 780px;
    margin: 0 auto 42px;
    text-align: center;
}

.thb-section__heading h2,
.thb-split__content h2,
.thb-video-card__copy h2 {
    margin: 0;
    color: var(--thb-navy);
    font-size: clamp(2rem, 4vw, 3.65rem);
    line-height: 1.08;
    font-weight: 850;
}

.thb-section__heading p,
.thb-split__content > p,
.thb-video-card__copy p {
    margin: 16px 0 0;
    color: var(--thb-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.thb-role-grid,
.thb-value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.thb-role-card,
.thb-value-grid article,
.thb-video-card {
    border-radius: 8px;
    box-shadow: var(--thb-shadow);
}

.thb-role-card {
    position: relative;
    min-height: 330px;
    padding: 32px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(219, 229, 239, 0.8);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.thb-role-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(16, 38, 63, 0.18);
}

.thb-role-card img {
    width: 74px;
    height: 74px;
    object-fit: contain;
    margin-bottom: 22px;
}

.thb-role-card h3,
.thb-step h3,
.thb-value-grid h3 {
    margin: 0;
    color: var(--thb-navy);
    font-weight: 850;
}

.thb-role-card p,
.thb-step p,
.thb-value-grid p {
    color: var(--thb-muted);
    line-height: 1.7;
}

.thb-link {
    display: inline-flex;
    margin-top: 8px;
    color: var(--thb-orange) !important;
    font-weight: 850;
    transition: transform 180ms ease, color 180ms ease;
}

.thb-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 56px;
    align-items: center;
}

.thb-split__image img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--thb-shadow);
}

.thb-steps {
    display: grid;
    gap: 18px;
    margin-top: 34px;
}

.thb-step {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--thb-line);
    border-radius: 8px;
    background: #fff;
}

.thb-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    color: #fff;
    background: var(--thb-navy);
    font-weight: 850;
}

.thb-step p {
    margin: 8px 0 0;
}

.thb-section--navy {
    background: var(--thb-navy);
}

.thb-section__heading--light h2 {
    color: #fff;
}

.thb-section__heading--light p {
    color: rgba(255, 255, 255, 0.76);
}

.thb-value-grid article {
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.thb-value-grid img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.12));
}

.thb-value-grid h3 {
    color: #fff;
}

.thb-value-grid p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.76);
}

.thb-section--video {
    background: var(--thb-cream);
}

.thb-video-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 30px;
    align-items: center;
    padding: 34px;
    background: #fff;
    border: 1px solid rgba(219, 229, 239, 0.84);
}

.thb-video-card__media video {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 8px;
    background: var(--thb-navy);
}

@media (max-width: 991px) {
    .thb-hero {
        min-height: auto;
    }

    .thb-hero__content {
        padding: 130px 0 60px;
    }

    .thb-hero::after {
        background: linear-gradient(0deg, rgba(16, 38, 63, 0.92), rgba(16, 38, 63, 0.7));
    }

    .thb-hero__trust,
    .thb-role-grid,
    .thb-value-grid,
    .thb-split,
    .thb-video-card {
        grid-template-columns: 1fr;
    }

    .thb-split__image img {
        min-height: 360px;
    }
}

@media (max-width: 575px) {
    .thb-section {
        padding: 64px 0;
    }

    .thb-hero__content {
        padding-top: 112px;
    }

    .thb-hero h1 {
        font-size: 2.65rem;
    }

    .thb-hero__intro {
        font-size: 1rem;
    }

    .thb-hero__actions {
        display: grid;
    }

    .thb-hero__trust {
        gap: 10px;
    }

    .thb-role-card,
    .thb-value-grid article,
    .thb-video-card {
        padding: 24px;
    }

    .thb-step {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .thb-btn,
    .thb-link,
    .thb-role-card {
        transition: none;
    }

    .thb-btn:hover,
    .thb-link:hover,
    .thb-role-card:hover {
        transform: none;
    }
}
