@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --navy: #143863;
    --navy-dark: #0d2949;
    --gold: #d6a52e;
    --text: #18283a;
    --border: #e7e9ed;
    --white: #ffffff;
    --shadow: rgba(20, 56, 99, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: #c85f06;
    
    background: var(--white);
}

img {
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 4px 20px var(--shadow);
}

.header-container {
    width: min(100% - 48px, 1380px);
    min-height: 94px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo img {
    width: auto;
    height: 70px;
    object-fit: contain;
}

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    margin-left: auto;
}

.nav-link,
.nav-dropdown-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: var(--text);
    font: 600 14px/1.4 "Inter", sans-serif;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.2s ease;
}

.nav-link::after,
.nav-dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
    color: var(--navy);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle:focus-visible::after,
.nav-link.active::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    transition: transform 0.25s ease;
}

.nav-dropdown.is-open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    min-width: 220px;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(20, 56, 99, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.nav-dropdown.is-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.dropdown-menu a {
    display: block;
    padding: 11px 14px;
    border-radius: 8px;
    color: #26384d;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
    background: #f5f6f8;
    color: var(--navy);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 140px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 8px;
    background: #ffb719;
    color: #101f35;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta::after {
    content: "→";
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
}

.nav-cta:hover,
.nav-cta:focus-visible {
    background: #f5a900;
    color: #101f35;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 183, 25, 0.2);
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 9px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1100px) {
    .header-container {
        width: min(100% - 40px, 1380px);
    }

    .main-navigation {
        gap: 20px;
    }

    .nav-link,
    .nav-dropdown-toggle,
    .nav-cta {
        font-size: 13px;
    }

    .nav-cta {
        padding: 0 18px;
    }
}

@media (max-width: 900px) {
    .header-container {
        min-height: 76px;
    }

    .site-logo img {
        height: 44px;
    }

    .mobile-menu-toggle {
        display: block;
        flex-shrink: 0;
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px 24px 24px;
        margin: 0;
        background: var(--white);
        border-top: 1px solid #eeeeee;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 18px 30px var(--shadow);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    }

    .main-navigation.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-link,
    .nav-dropdown-toggle {
        width: 100%;
        min-height: 48px;
        justify-content: space-between;
        padding: 12px 4px;
        font-size: 15px;
    }

    .nav-link::after,
    .nav-dropdown-toggle::after {
        display: none;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        margin: 0;
        padding: 4px 0 8px 14px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .nav-dropdown.is-open .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .dropdown-menu a {
        display: block;
        padding: 10px 12px;
        color: #26384d;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
    }

    .nav-cta {
        width: 100%;
        margin-top: 12px;
        min-height: 48px;
    }
}

@media (max-width: 900px) {
    .site-logo img {
        height: 54px;
    }
}

@media (max-width: 480px) {
    .site-logo img {
        height: 48px;
        max-width: 200px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
    }
}
/* Hero Section */

.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #0b1f35;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: min(640px, calc(100vh - 94px));
    min-height: 580px;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.7s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}

.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(5, 24, 45, 0.96) 0%,
            rgba(5, 24, 45, 0.82) 34%,
            rgba(5, 24, 45, 0.52) 62%,
            rgba(5, 24, 45, 0.28) 100%
        );
}

.hero-container {
    position: relative;
    z-index: 2;
    width: min(100% - 88px, 1380px);
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.hero-content {
    width: min(900px, 100%);
    padding: 30px 0 70px;
    color: #ffffff;
}

.hero-eyebrow {
    display: block;
    margin-bottom: 24px;
    color: #FFB719;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.4;
}

.hero-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(44px, 4.2vw, 64px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    margin: 30px 0 14px;
    color: #FFB719;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.4;
}

.hero-description {
    max-width: 860px;
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 56px;
    padding: 0 22px;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.hero-btn-primary {
    min-width: 264px;
    background: #ffb719;
    color: #101f35;
    border: 1px solid #ffb719;
}

.hero-btn-primary:hover,
.hero-btn-primary:focus-visible {
    background: #c85f06;
    border-color: #c85f06;
    color: #101f35;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 183, 25, 0.2);
}

.hero-btn-secondary {
    min-width: 216px;
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-btn-secondary:hover,
.hero-btn-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-btn-arrow {
    font-size: 21px;
    font-weight: 400;
    line-height: 1;
}

.hero-capabilities {
    margin-top: 26px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
}

.hero-capabilities span {
    margin: 0 5px;
    color: #ffb719;
}

.hero-slider-arrow {
    position: absolute;
    bottom: 22px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(10, 32, 55, 0.5);
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.hero-slider-arrow:hover,
.hero-slider-arrow:focus-visible {
    background: rgba(20, 56, 99, 0.85);
    border-color: rgba(255, 255, 255, 0.7);
}

.hero-slider-prev {
    left: max(24px, calc((100% - 1380px) / 2));
}

.hero-slider-next {
    right: max(24px, calc((100% - 1380px) / 2));
}

.hero-pagination {
    position: absolute;
    bottom: 44px;
    left: 50%;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 9px;
    transform: translateX(-50%);
}

.hero-dot {
    width: 34px;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition:
        width 0.25s ease,
        background-color 0.25s ease;
}

.hero-dot.is-active {
    width: 58px;
    background: #ffb719;
}

@media (max-width: 1100px) {
    .hero-container {
        width: min(100% - 80px, 1380px);
    }

    .hero-content {
        width: min(820px, 100%);
    }

    .hero-title {
        font-size: clamp(42px, 4.8vw, 58px);
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-capabilities {
        font-size: 15px;
    }

    .hero-slider-prev {
        left: 24px;
    }

    .hero-slider-next {
        right: 24px;
    }
}

@media (max-width: 900px) {
    .hero-slider {
        height: 650px;
        min-height: 0;
    }

    .hero-container {
        width: calc(100% - 48px);
        align-items: flex-start;
    }

    .hero-content {
        padding: 42px 0 30px;
    }

    .hero-title {
        font-size: clamp(42px, 9vw, 58px);
        letter-spacing: -1.5px;
    }

    .hero-subtitle {
        margin-top: 24px;
        font-size: 15px;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-actions {
        flex-wrap: wrap;
    }

    .hero-btn {
        min-height: 52px;
        font-size: 15px;
    }

    .hero-capabilities {
        font-size: 14px;
    }

    .hero-slider-arrow {
        width: 44px;
        height: 44px;
        font-size: 19px;
    }

    .hero-slider-prev {
        left: 18px;
    }

    .hero-slider-next {
        right: 18px;
    }

    .hero-pagination {
        bottom: 28px;
    }
}

@media (max-width: 600px) {
    .hero-slider {
        height: 680px;
        min-height: 0;
    }

    .hero-background img {
        object-position: 62% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(5, 24, 45, 0.55) 0%,
                rgba(5, 24, 45, 0.78) 40%,
                rgba(5, 24, 45, 0.96) 100%
            );
    }

    .hero-container {
        width: calc(100% - 40px);
    }

    .hero-content {
        padding: 36px 0 25px;
    }


    .hero-eyebrow {
        margin-bottom: 18px;
        font-size: 12px;
        letter-spacing: 3px;
    }

    .hero-title {
        font-size: clamp(38px, 11vw, 52px);
        line-height: 1;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        margin-top: 22px;
        font-size: 13px;
        letter-spacing: 1.8px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.55;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 22px;
    }

    .hero-btn,
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        min-width: 0;
        min-height: 50px;
    }

    .hero-capabilities {
        margin-top: 20px;
        font-size: 13px;
        line-height: 1.7;
    }

    .hero-slider-arrow {
        top: auto;
        bottom: 24px;
        width: 40px;
        height: 40px;
    }

    .hero-slider-prev {
        left: 18px;
    }

    .hero-slider-next {
        right: 18px;
    }

    .hero-pagination {
        bottom: 42px;
    }
}

@media (max-width: 400px) {
    .hero-slider {
        height: 700px;
        min-height: 0;
    }

    .hero-container {
        width: calc(100% - 32px);
    }

    .hero-title {
        font-size: 37px;
    }

    .hero-capabilities {
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-btn,
    .hero-slider-arrow,
    .hero-dot {
        transition: none;
    }
}

/* AI Companion */

.ai-companion-section {
    scroll-margin-top: 110px;
    padding: 50px 0 60px;
    background: #f7f8fa;
}

.ai-companion-container {
    width: min(100% - 88px, 1380px);
    margin: 0 auto;
}

.ai-companion-header {
    max-width: 1200px;
}

.ai-companion-section .section-eyebrow {
    display: block;
    margin-bottom: 24px;
    color: #c85f06;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.4;
}

.ai-companion-title {
    max-width: 1100px;
    margin: 0;
    color: #0b1f35;
    font-size: clamp(46px, 5vw, 68px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
}

.ai-companion-intro {
    max-width: 1050px;
    margin: 26px 0 0;
    color: #43566d;
    font-size: 18px;
    line-height: 1.65;
}

.ai-companion-framework {
    display: grid;
    grid-template-columns: 1fr 70px 1fr 70px 1fr 70px 1fr;
    align-items: start;
    margin-top: 50px;
}

.ai-companion-item {
    position: relative;
    min-width: 0;
    padding: 0 6px;
}

.ai-companion-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
}

.ai-companion-number {
    color: rgba(11, 31, 53, 0.12);
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -4px;
}

.ai-companion-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    flex-shrink: 0;
    border: 1.5px solid #ffb719;
    border-radius: 50%;
    background: #ffffff;
}

.ai-companion-icon svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: #0b1f35;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ai-companion-icon svg circle {
    fill: #ffffff;
}

.ai-companion-item h3 {
    margin: 28px 0 8px;
    color: #0b1f35;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.ai-companion-item h4 {
    max-width: 300px;
    margin: 0;
    color: #263e58;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.ai-companion-accent {
    display: block;
    width: 34px;
    height: 3px;
    margin: 24px 0 20px;
    background: #ffb719;
}

.ai-companion-item p {
    max-width: 310px;
    margin: 0;
    color: #52677e;
    font-size: 15px;
    line-height: 1.7;
}

.ai-companion-connector {
    display: flex;
    align-items: center;
    height: 82px;
    padding: 0 10px;
}

.ai-companion-connector span {
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    background: #ffb719;
}

.ai-companion-connector span::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ffb719;
    content: "";
    transform: translateY(-50%);
}

@media (max-width: 1200px) {
    .ai-companion-container {
        width: min(100% - 64px, 1380px);
    }

    .ai-companion-framework {
        grid-template-columns: 1fr 45px 1fr 45px 1fr 45px 1fr;
    }

    .ai-companion-number {
        font-size: 56px;
    }

    .ai-companion-item h3 {
        font-size: 25px;
    }

    .ai-companion-item h4 {
        font-size: 15px;
    }

    .ai-companion-item p {
        font-size: 14px;
    }
}

@media (max-width: 900px) {
    .ai-companion-section {
        padding: 85px 0 95px;
    }

    .ai-companion-container {
        width: calc(100% - 48px);
    }

    .ai-companion-title {
        font-size: clamp(42px, 6vw, 58px);
    }

    .ai-companion-framework {
        grid-template-columns: 1fr 40px 1fr;
        row-gap: 65px;
        margin-top: 75px;
    }

    .ai-companion-connector:nth-of-type(4) {
        display: none;
    }

    .ai-companion-item {
        padding: 0;
    }

    .ai-companion-number {
        font-size: 52px;
    }
}

@media (max-width: 600px) {
    .ai-companion-section {
        padding: 70px 0 80px;
    }

    .ai-companion-container {
        width: calc(100% - 40px);
    }

    .ai-companion-section .section-eyebrow {
        margin-bottom: 18px;
        font-size: 12px;
        letter-spacing: 3px;
    }

    .ai-companion-title {
        font-size: clamp(36px, 10vw, 48px);
        line-height: 1.05;
        letter-spacing: -1px;
    }

    .ai-companion-intro {
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.6;
    }

    .ai-companion-framework {
        display: block;
        margin-top: 55px;
    }

    .ai-companion-item {
        padding: 0 0 45px;
    }

    .ai-companion-item:not(:last-child) {
        margin-bottom: 15px;
    }

    .ai-companion-top {
        min-height: 68px;
    }

    .ai-companion-number {
        font-size: 50px;
        letter-spacing: -3px;
    }

    .ai-companion-icon {
        width: 68px;
        height: 68px;
    }

    .ai-companion-icon svg {
        width: 34px;
        height: 34px;
    }

    .ai-companion-item h3 {
        margin-top: 23px;
        font-size: 25px;
    }

    .ai-companion-item h4 {
        max-width: none;
        font-size: 15px;
    }

    .ai-companion-accent {
        margin: 20px 0 16px;
    }

    .ai-companion-item p {
        max-width: none;
        font-size: 14px;
        line-height: 1.65;
    }

    .ai-companion-connector {
        display: none;
    }

    .ai-companion-item:not(:last-child)::after {
        display: block;
        width: 100%;
        height: 1px;
        margin-top: 45px;
        background: rgba(11, 31, 53, 0.12);
        content: "";
    }
}

@media (max-width: 400px) {
    .ai-companion-container {
        width: calc(100% - 32px);
    }

    .ai-companion-title {
        font-size: 35px;
    }

    .ai-companion-number {
        font-size: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ai-companion-icon {
        transition: none;
    }
}

/* =========================================================
   Mobile Hero — Content Based Height
   ========================================================= */

@media (max-width: 600px) {

    .hero-slider {
        height: auto;
        min-height: 0;
        transition: height 0.35s ease;
    }

    .hero-slides {
        height: auto;
    }

    .hero-slide {
        position: absolute;
        inset: 0;
        height: auto;
        min-height: 0;
    }

    .hero-slide.is-active {
        position: relative;
    }

    .hero-container {
        width: calc(100% - 32px);
        margin: 0 auto;
        height: auto;
        min-height: 0;
    }

    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        width: 100%;
        padding: 28px 0 100px;
    }

}

/* =========================================================
   HERO SLIDER — CENTERED TEXT EXPERIMENT
   ========================================================= */

/*@media (min-width: 601px) {

    .hero-content {
        text-align: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-capabilities {
        text-align: center;
    }

}*/

/* =========================================================
   AI COMPANION — FINAL INTRO ALIGNMENT
   ========================================================= */

.ai-companion-section .ai-companion-header {
    width: 100%;
    max-width: none;
    text-align: center;
}

.ai-companion-section .ai-companion-title {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto 32px;
    text-align: center;
}

.ai-companion-section .ai-companion-intro {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* =========================================================
   AGENTIC AI
   ========================================================= */

.agentic-ai-section {
    background: #e9eef3;
    padding: 50px 0 60px;
}

.agentic-ai-container {
    width: min(100% - 48px, 1380px);
    margin: 0 auto;
}


/* ---------------------------------------------------------
   Section Header
   --------------------------------------------------------- */

.agentic-ai-header {
    max-width: 100%;
    margin: 0 auto 65px;
}

.agentic-ai-eyebrow {
    display: inline-block;
    margin-bottom: 22px;

    color: #c85f06;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.agentic-ai-title {
    max-width: 1050px;
    margin: 0 0 26px;
    color: #0b1f35;
    font-size: clamp(42px, 4.5vw, 64px);
    line-height: 1.06;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.agentic-ai-intro {
    max-width: 920px;

    margin: 0;

    color: #43566d;
    font-size: 18px;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   Companion Grid
   --------------------------------------------------------- */

.agentic-ai-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 20px;
}


/* ---------------------------------------------------------
   Companion Card
   --------------------------------------------------------- */

.agentic-ai-card {
    display: flex;
    flex-direction: column;

    min-height: 304px;

    padding: 32px 32px 34px;

    background: #F7F9FC;

    border: 1px solid rgba(20, 56, 99, 0.10);
    border-radius: 18px;

    box-shadow: 0 8px 28px rgba(20, 56, 99, 0.045);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.agentic-ai-card:hover {
    transform: translateY(-4px);

    border-color: rgba(20, 56, 99, 0.18);

    box-shadow: 0 14px 35px rgba(20, 56, 99, 0.08);
}


/* ---------------------------------------------------------
   Number
   --------------------------------------------------------- */

.agentic-ai-number {
    display: block;

    margin-bottom: 23px;

    color: #c85f06;

    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.08em;
}


/* ---------------------------------------------------------
   Card Content
   --------------------------------------------------------- */

.agentic-ai-card-content {
    max-width: 100%;
}

.agentic-ai-card-content h3 {
    margin: 0 0 14px;
    color: #0b1f35;
    font-size: 27px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.agentic-ai-card-short {
    margin: 0 0 20px;

    color: #263e58;

    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
}

.agentic-ai-card-description {
    margin: 0;

    color: #52677e;

    font-size: 15px;
    line-height: 1.65;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .agentic-ai-section {
        padding: 90px 0 100px;
    }

    .agentic-ai-header {
        margin-bottom: 50px;
    }

    .agentic-ai-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .agentic-ai-card {
        min-height: 330px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .agentic-ai-section {
        padding: 70px 0 80px;
    }

    .agentic-ai-container {
        width: calc(100% - 32px);
    }

    .agentic-ai-header {
        margin-bottom: 40px;
    }

    .agentic-ai-eyebrow {
        margin-bottom: 17px;

        font-size: 13px;
        letter-spacing: 0.24em;
    }

    .agentic-ai-title {
        margin-bottom: 20px;

        font-size: 38px;
        line-height: 1.08;
        letter-spacing: -0.025em;
    }

    .agentic-ai-intro {
        font-size: 17px;
        line-height: 1.6;
    }


    .agentic-ai-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }


    .agentic-ai-card {
        min-height: auto;

        padding: 28px 24px 30px;

        border-radius: 15px;
    }

    .agentic-ai-number {
        margin-bottom: 36px;

        font-size: 15px;
    }

    .agentic-ai-card-content h3 {
        margin-bottom: 12px;

        font-size: 24px;
    }

    .agentic-ai-card-short {
        margin-bottom: 16px;

        font-size: 16px;
    }

    .agentic-ai-card-description {
        font-size: 15px;
        line-height: 1.6;
    }

}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .agentic-ai-section {
        padding: 60px 0 70px;
    }

    .agentic-ai-title {
        font-size: 34px;
    }

}

/* =========================================================
   ENTERPRISE CHALLENGES
   ========================================================= */

.enterprise-challenges-section {
    background: #F7F8FA;
    padding: 50px 0 60px;
}

.enterprise-challenges-container {
    width: min(1400px, calc(100% - 80px));
    margin: 0 auto;
}


/* ---------------------------------------------------------
   Section Header
   --------------------------------------------------------- */

.enterprise-challenges-header {
    max-width: 1100px;
    margin: 0 auto 70px;
    text-align: center;
}

.enterprise-challenges-header .section-eyebrow {
    display: inline-block;
    margin-bottom: 22px;

    color: #c85f06;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.enterprise-challenges-title {
    margin: 0 auto;
    max-width: 1050px;

    font-size: clamp(42px, 4.2vw, 68px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.035em;

    color: #0b1f35;
}

.enterprise-challenges-intro {
    max-width: 900px;
    margin: 28px auto 0;

    font-size: 18px;
    line-height: 1.65;
    font-weight: 400;

    color: #426383;
}


/* ---------------------------------------------------------
   Cards Grid
   --------------------------------------------------------- */

.enterprise-challenges-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}


/* ---------------------------------------------------------
   Individual Card
   --------------------------------------------------------- */

.enterprise-challenge-card {
    position: relative;

    min-height: 270px;
    padding: 30px 30px 32px;

    background: #ffffff;
    border: 1px solid rgba(20, 56, 99, 0.08);
    border-radius: 18px;

    display: flex;
    flex-direction: column;

    box-shadow: 0 4px 18px rgba(20, 56, 99, 0.035);

    /* Hover animation */
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.enterprise-challenge-card:hover {
    transform: translateY(-5px);

    border-color: rgba(20, 56, 99, 0.16);

    box-shadow:
        0 14px 32px rgba(20, 56, 99, 0.10);
}


/* ---------------------------------------------------------
   Card Top
   --------------------------------------------------------- */

.enterprise-challenge-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;
}

.enterprise-challenge-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #143863;
}

.enterprise-challenge-icon svg {
    width: 32px;
    height: 32px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.enterprise-challenge-number {
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.04em;

    color: #c85f06;
}


/* ---------------------------------------------------------
   Card Typography
   --------------------------------------------------------- */

.enterprise-challenge-card h3 {
    margin: 0 0 12px;

    font-size: 21px;
    line-height: 1.25;
    font-weight: 650;
    letter-spacing: -0.015em;

    color: #143863;
}

.enterprise-challenge-card p {
    margin: 0;

    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;

    color: #426383;
}


/* ---------------------------------------------------------
   Responsive — Tablet
   --------------------------------------------------------- */

@media (max-width: 1100px) {

    .enterprise-challenges-section {
        padding: 90px 0 100px;
    }

    .enterprise-challenges-container {
        width: min(100% - 48px, 900px);
    }

    .enterprise-challenges-header {
        margin-bottom: 55px;
    }

    .enterprise-challenges-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .enterprise-challenge-card {
        min-height: 250px;
    }
}


/* ---------------------------------------------------------
   Responsive — Mobile
   --------------------------------------------------------- */

@media (max-width: 700px) {

    .enterprise-challenges-section {
        padding: 70px 0 80px;
    }

    .enterprise-challenges-container {
        width: calc(100% - 32px);
    }

    .enterprise-challenges-header {
        margin-bottom: 42px;
    }

    .enterprise-challenges-title {
        font-size: 38px;
        line-height: 1.1;
    }

    .enterprise-challenges-intro {
        margin-top: 20px;

        font-size: 17px;
        line-height: 1.6;
    }

    .enterprise-challenges-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .enterprise-challenge-card {
        min-height: auto;
        padding: 26px 24px 28px;
    }

    .enterprise-challenge-top {
        margin-bottom: 22px;
    }

    .enterprise-challenge-card h3 {
        font-size: 20px;
    }

    .enterprise-challenge-card p {
        font-size: 15px;
        line-height: 1.55;
    }
}


/* ---------------------------------------------------------
   Small Mobile
   --------------------------------------------------------- */

@media (max-width: 480px) {

    .enterprise-challenges-section {
        padding: 60px 0 70px;
    }

    .enterprise-challenges-container {
        width: calc(100% - 28px);
    }

    .enterprise-challenges-title {
        font-size: 32px;
    }

    .enterprise-challenges-intro {
        font-size: 16px;
    }

    .enterprise-challenge-card {
        padding: 24px 22px 26px;
        border-radius: 16px;
    }

    .enterprise-challenge-icon {
        width: 40px;
        height: 40px;
    }

    .enterprise-challenge-icon svg {
        width: 29px;
        height: 29px;
    }

    .enterprise-challenge-card h3 {
        font-size: 19px;
    }

    .enterprise-challenge-card p {
        font-size: 15px;
    }
}

/* =========================================================
   THE SIRREXA APPROACH
   ========================================================= */

.sirrexa-approach-section {
    background: #E9EEF3;
    padding: 50px 0 60px;
}

.sirrexa-approach-container {
    width: min(1400px, calc(100% - 80px));
    margin: 0 auto;
}


/* ---------------------------------------------------------
   Section Header
   --------------------------------------------------------- */

.sirrexa-approach-header {
    max-width: 1000px;
    margin: 0 auto 48px;
    text-align: center;
}

.sirrexa-approach-header .section-eyebrow {
    display: inline-block;
    margin-bottom: 22px;

    color: #c85f06;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

}

.sirrexa-approach-title {
    margin: 0;

    color: #0B1F35;

    font-size: clamp(40px, 4vw, 62px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.sirrexa-approach-intro {
    max-width: 850px;
    margin: 22px auto 0;

    color: #426383;

    font-size: 19px;
    line-height: 1.6;
    font-weight: 400;
}

/* ---------------------------------------------------------
   Process Layout
   --------------------------------------------------------- */

.sirrexa-approach-process {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        40px
        minmax(0, 1fr)
        40px
        minmax(0, 1fr)
        40px
        minmax(0, 1fr)
        40px
        minmax(0, 1fr);

    align-items: start;
}

/* ---------------------------------------------------------
   Process Step
   --------------------------------------------------------- */

.sirrexa-approach-step {
    position: relative;

    min-height: 330px;
    padding: 30px 28px;

    background: #F5F8FB;
    border: 1px solid rgba(11, 31, 53, 0.08);
    border-radius: 18px;

    box-shadow: 0 4px 16px rgba(11, 31, 53, 0.035);

    /* Hover animation */
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}


/* ---------------------------------------------------------
   Card Hover
   --------------------------------------------------------- */

.sirrexa-approach-step:hover {
    transform: translateY(-5px);

    border-color: rgba(20, 56, 99, 0.16);

    box-shadow:
        0 14px 32px rgba(20, 56, 99, 0.10);
}

.sirrexa-approach-step-top {
    display: flex;
    align-items: center;

    margin-bottom: 28px;
}

.sirrexa-approach-number {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #c85f06;
    color: #ffffff;

    font-size: 15px;
    line-height: 1;
    font-weight: 700;
}


/* ---------------------------------------------------------
   Step Typography
   --------------------------------------------------------- */

.sirrexa-approach-step h3 {
    margin: 0 0 8px;

    color: #0B1F35;

    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.sirrexa-approach-step h4 {
    margin: 0 0 18px;

    color: #0B1F35;

    font-size: 16px;
    line-height: 1.45;
    font-weight: 600;
}

.sirrexa-approach-step > p {
    margin: 0;

    color: #426383;

    font-size: 15px;
    line-height: 1.65;
    font-weight: 400;
}


/* ---------------------------------------------------------
   Process Connector
   --------------------------------------------------------- */

.sirrexa-approach-connector {
    position: relative;

    height: 330px;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    padding-top: 54px;
}

.sirrexa-approach-connector span {
    display: block;

    width: 38px;
    height: 2px;

    background: #c85f06;
}


/* ---------------------------------------------------------
   Featured "Design" Step
   --------------------------------------------------------- */

.sirrexa-approach-step-featured {
    border-color: #c85f06;

    box-shadow:
        0 5px 20px rgba(245, 169, 0, 0.08);
}

.sirrexa-approach-step-featured .sirrexa-approach-number {
    background: #c85f06;
}


/* ---------------------------------------------------------
   Design / Architecture Callout
   --------------------------------------------------------- */

.sirrexa-approach-proof {
    margin-top: 24px;
    padding: 16px 18px;

    background: #E9EEF3;
    border-left: 3px solid #c85f06;
    border-radius: 0 10px 10px 0;
}

.sirrexa-approach-proof-label {
    display: block;
    margin-bottom: 7px;

    color: #c85f06;

    font-size: 11px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.sirrexa-approach-proof p {
    margin: 0;

    color: #426383;

    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1200px) {

    .sirrexa-approach-container {
        width: min(100% - 48px, 1000px);
    }

    /*
     * At tablet width, remove horizontal connectors
     * and display the five cards in two columns.
     */

    .sirrexa-approach-process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .sirrexa-approach-connector {
        display: none;
    }

    .sirrexa-approach-step {
        min-height: 310px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .sirrexa-approach-section {
        padding: 50px 0 60px;
    }

    .sirrexa-approach-container {
        width: calc(100% - 32px);
    }

    .sirrexa-approach-header {
        margin-bottom: 38px;
    }

    .sirrexa-approach-title {
        font-size: 38px;
        line-height: 1.1;
    }

    .sirrexa-approach-intro {
        margin-top: 18px;

        font-size: 17px;
        line-height: 1.6;
    }


    /* -----------------------------------------------------
       Vertical Process
       ----------------------------------------------------- */

    .sirrexa-approach-process {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .sirrexa-approach-step {
        width: 100%;
        min-height: auto;

        padding: 26px 24px;
    }

    .sirrexa-approach-step-top {
        margin-bottom: 22px;
    }

    .sirrexa-approach-step h3 {
        font-size: 24px;
    }

    .sirrexa-approach-step h4 {
        font-size: 16px;
    }

    .sirrexa-approach-step > p {
        font-size: 15px;
    }


    /* -----------------------------------------------------
       Vertical Connectors
       ----------------------------------------------------- */

    .sirrexa-approach-connector {
        display: flex;

        width: 100%;
        height: 40px;

        padding: 0;

        align-items: center;
        justify-content: center;
    }

    .sirrexa-approach-connector span {
        width: 1px;
        height: 100%;

        background: rgba(20, 56, 99, 0.28);
    }

    .sirrexa-approach-connector i {
        display: none;
    }

    .sirrexa-approach-proof {
        margin-top: 22px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .sirrexa-approach-container {
        width: calc(100% - 28px);
    }

    .sirrexa-approach-title {
        font-size: 32px;
    }

    .sirrexa-approach-intro {
        font-size: 16px;
    }

    .sirrexa-approach-step {
        padding: 24px 22px;
        border-radius: 16px;
    }

    .sirrexa-approach-number {
        width: 44px;
        height: 44px;

        font-size: 14px;
    }

    .sirrexa-approach-step h3 {
        font-size: 22px;
    }

    .sirrexa-approach-step h4 {
        font-size: 15px;
    }

    .sirrexa-approach-step > p {
        font-size: 15px;
    }
}

/* =========================================================
   WHAT WE DO
   SIRREXA Enterprise Services Showcase
   ========================================================= */

.what-we-do-section {
    background: #F7F8FA;
    padding: 50px 0 60px;
    color: #FFFFFF;
}

.what-we-do-container {
    width: min(100% - 48px, 1380px);
    margin: 0 auto;
}


/* =========================================================
   SECTION HEADER
   Based on established SIRREXA section system
   ========================================================= */

.what-we-do-header {
    max-width: 100%;
    margin: 0 0 65px;
    text-align: left;
}

.what-we-do-eyebrow {
    display: inline-block;
    margin-bottom: 22px;

    color: #c85f06;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

}

.what-we-do-heading {
    max-width: 1050px;

    margin: 0 0 26px;

    color: #0B1F35;

    font-size: clamp(42px, 4.5vw, 64px);
    line-height: 1.06;
    font-weight: 700;

    letter-spacing: -0.035em;
}

.what-we-do-intro {
    max-width: 920px;

    margin: 0;

    color: #426383;

    font-size: 18px;
    line-height: 1.65;
}


/* =========================================================
   SERVICE SHOWCASE
   ========================================================= */

.what-we-do-showcase {
    display: flex;
    align-items: stretch;

    width: 100%;
    height: 600px;

    gap: 8px;
}


/* =========================================================
   SERVICE PANEL
   ========================================================= */

.what-we-do-service {
    position: relative;

    min-width: 0;
    height: 100%;

    overflow: hidden;

    background: #0B1F35;

    border: 1px solid rgba(255, 255, 255, 0.14);

    cursor: pointer;

    transition:
        flex 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease;
}


/* =========================================================
   ACTIVE SERVICE
   ========================================================= */

.what-we-do-service--active {
    flex: 6.8;

    border-color: #c85f06;
}


/* =========================================================
   COMPACT SERVICES
   ========================================================= */

.what-we-do-service--compact {
    flex: 1.3;
}

.what-we-do-service--compact .what-we-do-service-details {
    display: none;
}

.what-we-do-service--active .what-we-do-service-compact-title {
    display: none;
}

/* =========================================================
   SERVICE IMAGE
   ========================================================= */

.what-we-do-service-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 0;
}

.what-we-do-service-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.what-we-do-service:hover .what-we-do-service-image img {
    transform: scale(1.025);
}


/* =========================================================
   IMAGE OVERLAY
   ========================================================= */

.what-we-do-service-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(4, 16, 29, 0.28) 0%,
            rgba(4, 16, 29, 0.08) 32%,
            rgba(4, 16, 29, 0.42) 58%,
            rgba(4, 16, 29, 0.96) 100%
        );
}


/* Darker treatment for compact panels */

.what-we-do-service--compact .what-we-do-service-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(4, 16, 29, 0.45) 0%,
            rgba(4, 16, 29, 0.35) 45%,
            rgba(4, 16, 29, 0.90) 100%
        );
}


/* =========================================================
   SERVICE CONTENT
   ========================================================= */

.what-we-do-service-content {
    position: relative;

    width: 100%;
    height: 100%;

    z-index: 2;
}


/* =========================================================
   SERVICE NUMBER
   ========================================================= */

.what-we-do-service-number {
    position: absolute;

    top: 22px;
    left: 20px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 15px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 0.08em;
}


/* =========================================================
   ACTIVE SERVICE DETAILS
   ========================================================= */

.what-we-do-service-details {
    position: absolute;

    left: 36px;
    right: 36px;
    bottom: 32px;

    max-width: 780px;
}

.what-we-do-service-eyebrow {
    margin-bottom: 14px;

    color: #c85f06;

    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: 0.20em;
    text-transform: uppercase;
}

.what-we-do-service-title {
    max-width: 760px;

    margin: 0 0 18px;

    color: #FFFFFF;

    font-size: clamp(34px, 3.2vw, 48px);
    line-height: 1.08;
    font-weight: 700;

    letter-spacing: -0.03em;
}

.what-we-do-service-description {
    max-width: 760px;

    margin: 0 0 20px;

    color: rgba(255, 255, 255, 0.80);

    font-size: 16px;
    line-height: 1.65;
}


/* =========================================================
   SERVICE FEATURES
   ========================================================= */

.what-we-do-service-features {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    max-width: 700px;

    margin: 0 0 20px;
    padding: 0;

    list-style: none;

    gap: 8px 36px;
}

.what-we-do-service-features li {
    display: flex;
    align-items: center;

    gap: 10px;

    color: rgba(255, 255, 255, 0.84);

    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
}

.what-we-do-feature-marker {
    flex: 0 0 auto;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #c85f06;
}


/* =========================================================
   EXPLORE SERVICE
   ========================================================= */

.what-we-do-service-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: #c85f06;

    font-size: 14px;
    line-height: 1;
    font-weight: 700;

    text-decoration: none;

    transition:
        color 0.25s ease,
        gap 0.25s ease;
}

.what-we-do-service-link:hover {
    color: #FFFFFF;
    gap: 14px;
}

.what-we-do-service-link-arrow {
    font-size: 19px;
    line-height: 1;
}


/* =========================================================
   COMPACT SERVICE
   ========================================================= */

.what-we-do-service--compact .what-we-do-service-number {
    top: 22px;
    left: 20px;
}

.what-we-do-service-compact-title {
    position: absolute;

    left: 50%;
    bottom: 22px;

    width: calc(100% - 20px);

    transform: translateX(-50%);

    color: #FFFFFF;

    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.02em;

    text-align: center;
    text-transform: uppercase;
}

.what-we-do-service-compact-title span {
    display: block;
}


/* =========================================================
   PANEL HOVER
   ========================================================= */

.what-we-do-service--compact:hover {
    border-color: rgba(245, 169, 0, 0.65);
}

.what-we-do-service--active:hover {
    border-color: #c85f06;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .what-we-do-section {
        padding: 90px 0 100px;
    }

    .what-we-do-header {
        margin-bottom: 50px;
    }

    .what-we-do-showcase {
        height: 540px;
    }

    .what-we-do-service--active {
        flex: 6;
    }

    .what-we-do-service--compact {
        flex: 0.75;
    }

    .what-we-do-service-details {
        left: 28px;
        right: 28px;
        bottom: 28px;
    }

    .what-we-do-service-title {
        font-size: 35px;
    }

    .what-we-do-service-description {
        font-size: 15px;
    }

    .what-we-do-service-features {
        gap: 7px 20px;
    }

        
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .what-we-do-section {
        padding: 70px 0 80px;
    }

    .what-we-do-container {
        width: calc(100% - 32px);
    }

    .what-we-do-header {
        margin-bottom: 40px;
    }

    .what-we-do-eyebrow {
        margin-bottom: 17px;

        font-size: 13px;
        letter-spacing: 0.24em;
    }

    .what-we-do-heading {
        margin-bottom: 20px;

        font-size: 38px;
        line-height: 1.08;
        letter-spacing: -0.025em;
    }

    .what-we-do-intro {
        font-size: 17px;
        line-height: 1.6;
    }


    /* -----------------------------------------------------
       Mobile Showcase
       ----------------------------------------------------- */

    .what-we-do-showcase {
        display: flex;
        flex-direction: column;

        height: auto;

        gap: 8px;
    }

    .what-we-do-service {
        flex: none !important;

        width: 100%;
        height: 72px;
        min-height: 72px;

        transition:
            height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
            border-color 0.3s ease;
    }

    .what-we-do-service--active {
        height: 510px;
        min-height: 510px;

        border-color: #c85f06;
    }

    .what-we-do-service--compact {
        height: 72px;
        min-height: 72px;
    }


    /* -----------------------------------------------------
       Compact Mobile Overlay
       ----------------------------------------------------- */

    .what-we-do-service--compact .what-we-do-service-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(4, 16, 29, 0.90) 0%,
                rgba(4, 16, 29, 0.68) 100%
            );
    }


    /* -----------------------------------------------------
       Mobile Number
       ----------------------------------------------------- */

    .what-we-do-service-number {
        top: 18px;
        left: 18px;

        font-size: 13px;
    }


    /* -----------------------------------------------------
       Active Mobile Content
       ----------------------------------------------------- */

    .what-we-do-service-details {
        left: 20px;
        right: 20px;
        bottom: 24px;

        max-width: none;
    }

    .what-we-do-service-eyebrow {
        margin-bottom: 10px;

        font-size: 10px;
        letter-spacing: 0.16em;
    }

    .what-we-do-service-title {
        margin-bottom: 12px;

        font-size: 28px;
        line-height: 1.12;
        letter-spacing: -0.025em;
    }

    .what-we-do-service-description {
        margin-bottom: 16px;

        font-size: 14px;
        line-height: 1.55;
    }


    /* -----------------------------------------------------
       Mobile Features
       ----------------------------------------------------- */

    .what-we-do-service-features {
        grid-template-columns: 1fr;

        gap: 6px;

        margin-bottom: 18px;
    }

    .what-we-do-service-features li {
        font-size: 13px;
    }


    /* -----------------------------------------------------
       Compact Mobile Title
       ----------------------------------------------------- */

    .what-we-do-service-compact-title {
        top: 50%;
        right: 18px;
        bottom: auto;
        left: auto;

        width: auto;

        transform: translateY(-50%);

        padding-left: 55px;

        font-size: 13px;

        text-align: right;
    }

    .what-we-do-service-compact-title span {
        display: inline;
    } 

}
/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .what-we-do-section {
        padding: 60px 0 70px;
    }

    .what-we-do-heading {
        font-size: 34px;
    }

}

/* =========================================================
   SIRREXA AI LABS
   ========================================================= */

.ai-labs-section {
    background: #e9eef3;
    padding: 50px 0 60px;
}

.ai-labs-container {
    width: min(100% - 48px, 1380px);
    margin: 0 auto;
}


/* ---------------------------------------------------------
   Section Header
   --------------------------------------------------------- */

.ai-labs-header {
    max-width: 1000px;

    margin: 0 auto 65px;

    text-align: center;
}

.ai-labs-eyebrow {
    display: inline-block;
    margin-bottom: 22px;

    color: #c85f06;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

}

.ai-labs-title {
    max-width: 1000px;

    margin: 0 auto 26px;

    color: #0b1f35;

    font-size: clamp(42px, 4.5vw, 64px);
    line-height: 1.06;
    font-weight: 700;

    letter-spacing: -0.035em;
}

.ai-labs-intro {
    max-width: 920px;

    margin: 0 auto;

    color: #43566d;

    font-size: 18px;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   Solutions Grid
   --------------------------------------------------------- */

.ai-labs-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 20px;

    align-items: stretch;
}


/* ---------------------------------------------------------
   Solution Card
   --------------------------------------------------------- */

.ai-labs-card {
    display: flex;
    flex-direction: column;

    min-height: 560px;

    padding: 32px 32px 30px;

    background: #F7F9FC;

    border: 1px solid rgba(20, 56, 99, 0.10);
    border-radius: 18px;

    box-shadow: 0 8px 28px rgba(20, 56, 99, 0.045);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.ai-labs-card:hover {
    transform: translateY(-4px);

    border-color: rgba(245, 169, 0, 0.45);

    box-shadow: 0 14px 35px rgba(20, 56, 99, 0.08);
}


/* ---------------------------------------------------------
   Card Heading
   --------------------------------------------------------- */

.ai-labs-card-top {
    margin-bottom: 28px;
}

.ai-labs-card-heading {
    display: flex;
    align-items: center;

    gap: 14px;
}

.ai-labs-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    color: #c85f06;

    background: rgba(245, 169, 0, 0.10);

    border: 1px solid rgba(245, 169, 0, 0.30);
    border-radius: 12px;
}

.ai-labs-icon svg {
    display: block;

    width: 25px;
    height: 25px;
}

.ai-labs-card-title {
    margin: 0;

    color: #0b1f35;

    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: -0.025em;
}


/* ---------------------------------------------------------
   Card Content
   --------------------------------------------------------- */

.ai-labs-card-content {
    flex: 1;

    max-width: 100%;
}

.ai-labs-card-lead {
    margin: 0 0 18px;

    color: #263e58;

    font-size: 17px;
    line-height: 1.5;
    font-weight: 600;
}

.ai-labs-card-description {
    margin: 0 0 27px;

    color: #52677e;

    font-size: 15px;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   Capabilities
   --------------------------------------------------------- */

.ai-labs-capabilities {
    display: flex;
    flex-direction: column;

    gap: 10px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.ai-labs-capabilities li {
    position: relative;

    padding-left: 20px;

    color: #263e58;

    font-size: 15px;
    line-height: 1.5;
}

.ai-labs-capabilities li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0.62em;

    width: 6px;
    height: 6px;

    background: #c85f06;

    border-radius: 50%;
}


/* ---------------------------------------------------------
   Outcome
   --------------------------------------------------------- */

.ai-labs-outcome {
    margin-top: 30px;

    padding: 17px 18px 18px;

    background: #e9eef3;

    border-left: 3px solid #c85f06;
    border-radius: 0 10px 10px 0;
}

.ai-labs-outcome-label {
    display: block;

    margin-bottom: 8px;

    color: #c85f06;

    font-size: 14px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.ai-labs-outcome p {
    margin: 0;

    color: #0b1f35;

    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
}


/* ---------------------------------------------------------
   Card Footer
   --------------------------------------------------------- */

.ai-labs-card-footer {
    margin-top: 32px;

    padding-top: 22px;

    border-top: 1px solid rgba(20, 56, 99, 0.10);
}

.ai-labs-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: #0b1f35;

    font-size: 15px;
    line-height: 1;
    font-weight: 700;

    text-decoration: none;

    transition:
        color 0.2s ease,
        gap 0.2s ease;
}

.ai-labs-link span:last-child {
    color: #c85f06;

    font-size: 20px;
    line-height: 1;

    transition: transform 0.2s ease;
}

.ai-labs-link:hover {
    color: #c85f06;

    gap: 13px;
}

.ai-labs-link:hover span:last-child {
    transform: translateX(3px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .ai-labs-section {
        padding: 90px 0 100px;
    }

    .ai-labs-header {
        margin-bottom: 50px;
    }

    .ai-labs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ai-labs-card {
        min-height: 540px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .ai-labs-section {
        padding: 70px 0 80px;
    }

    .ai-labs-container {
        width: calc(100% - 32px);
    }


    /* -----------------------------------------------------
       Header
       ----------------------------------------------------- */

    .ai-labs-header {
        max-width: 100%;

        margin-bottom: 40px;

        text-align: center;
    }

    .ai-labs-eyebrow {
        margin-bottom: 17px;

        font-size: 13px;

        letter-spacing: 0.24em;
    }

    .ai-labs-title {
        margin-bottom: 20px;

        font-size: 38px;
        line-height: 1.08;

        letter-spacing: -0.025em;
    }

    .ai-labs-intro {
        font-size: 17px;
        line-height: 1.6;
    }


    /* -----------------------------------------------------
       Grid
       ----------------------------------------------------- */

    .ai-labs-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    /* -----------------------------------------------------
       Card
       ----------------------------------------------------- */

    .ai-labs-card {
        min-height: auto;

        padding: 28px 24px 30px;

        border-radius: 15px;
    }


    /* -----------------------------------------------------
       Card Heading
       ----------------------------------------------------- */

    .ai-labs-card-top {
        margin-bottom: 24px;
    }

    .ai-labs-card-heading {
        gap: 12px;
    }

    .ai-labs-icon {
        width: 42px;
        height: 42px;

        flex-basis: 42px;

        border-radius: 10px;
    }

    .ai-labs-icon svg {
        width: 22px;
        height: 22px;
    }

    .ai-labs-card-title {
        font-size: 25px;
    }


    /* -----------------------------------------------------
       Card Content
       ----------------------------------------------------- */

    .ai-labs-card-lead {
        margin-bottom: 17px;

        font-size: 16px;
    }

    .ai-labs-card-description {
        margin-bottom: 24px;

        font-size: 15px;
        line-height: 1.6;
    }


    /* -----------------------------------------------------
       Capabilities
       ----------------------------------------------------- */

    .ai-labs-capabilities {
        gap: 9px;
    }

    .ai-labs-capabilities li {
        font-size: 15px;
    }


    /* -----------------------------------------------------
       Outcome
       ----------------------------------------------------- */

    .ai-labs-outcome {
        margin-top: 27px;

        padding: 15px 16px 16px;
    }


    /* -----------------------------------------------------
       Footer
       ----------------------------------------------------- */

    .ai-labs-card-footer {
        margin-top: 28px;

        padding-top: 20px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .ai-labs-section {
        padding: 60px 0 70px;
    }

    .ai-labs-title {
        font-size: 34px;
    }

    .ai-labs-card-title {
        font-size: 24px;
    }

}

/* ---------------------------------------------------------
   Cross-Industry Strategic Impact
   --------------------------------------------------------- */

.ai-labs-impact {
    margin-top: 55px;
}


/* ---------------------------------------------------------
   Impact Header
   --------------------------------------------------------- */

.ai-labs-impact-header {
    margin-bottom: 18px;
}

.ai-labs-impact-eyebrow {
    display: inline-block;
    margin-bottom: 13px;

    color: #c85f06;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

}


/* ---------------------------------------------------------
   Impact Metrics
   --------------------------------------------------------- */

.ai-labs-impact-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 16px;
}


.ai-labs-impact-item {
    padding: 22px 22px 20px;

    background: #F7F9FC;

    border: 1px solid rgba(20, 56, 99, 0.08);
    border-radius: 14px;

    text-align: left;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.ai-labs-impact-item:hover {
    transform: translateY(-4px);

    /*border-color: rgba(245, 169, 0, 0.35);*/

    box-shadow: 0 10px 24px rgba(11, 31, 53, 0.08);
}

/* ---------------------------------------------------------
   Impact Number
   --------------------------------------------------------- */

.ai-labs-impact-value {
    margin-bottom: 5px;

    color: #c85f06;

    font-size: 32px;
    line-height: 1.1;
    font-weight: 500;

    letter-spacing: -0.025em;
}


/* ---------------------------------------------------------
   Impact Title
   --------------------------------------------------------- */

.ai-labs-impact-item h4 {
    margin: 0 0 7px;

    color: #0b1f35;

    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
}


/* ---------------------------------------------------------
   Impact Description
   --------------------------------------------------------- */

.ai-labs-impact-item p {
    max-width: 100%;

    /*margin: 0 auto;*/

    color: #52677e;

    font-size: 15px;
    line-height: 1.45;
}


/* ---------------------------------------------------------
   Impact Outcome Statement
   --------------------------------------------------------- */

.ai-labs-impact-statement {
    position: relative;

    margin-top: 18px;

    padding: 18px 22px 18px 58px;

    background: #DCEAF7;

    border: 1px solid rgba(20, 56, 99, 0.08);
    border-left: 3px solid #c85f06;

    border-radius: 10px;
}


/* Statement */

.ai-labs-impact-statement p {
    max-width: 100%;

    margin: 0;

    color: #0b1f35;

    font-size: 14px;
    line-height: 1.55;
    font-weight: 600;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .ai-labs-impact {
        margin-top: 45px;
    }

    .ai-labs-impact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .ai-labs-impact {
        margin-top: 40px;
    }

    .ai-labs-impact-header {
        margin-bottom: 16px;
    }

    .ai-labs-impact-eyebrow {
        font-size: 12px;
        letter-spacing: 0.18em;
    }

    .ai-labs-impact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .ai-labs-impact-item {
        padding: 18px 14px 17px;

        border-radius: 12px;
    }

    .ai-labs-impact-value {
        font-size: 27px;
    }

    .ai-labs-impact-item h4 {
        font-size: 13px;
    }

    .ai-labs-impact-item p {
        font-size: 12px;
        line-height: 1.45;
    }

    .ai-labs-impact-statement {
        margin-top: 14px;

        padding: 46px 18px 17px;
    }

    .ai-labs-impact-statement::before {
        left: 18px;
        top: 18px;
    }

    .ai-labs-impact-statement p {
        font-size: 13px;
        line-height: 1.55;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .ai-labs-impact-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */

.why-choose-section {
    background: #F7F8FA;
    padding: 50px 0 60px;
}

.why-choose-container {
    width: min(100% - 48px, 1380px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr);
    gap: 38px;

    align-items: center;
}


/* ---------------------------------------------------------
   IMAGE
   --------------------------------------------------------- */

.why-choose-image {
    width: 100%;
    overflow: hidden;

    border-radius: 18px;
}

.why-choose-image img {
    display: block;

    width: 100%;
    height: 540px;

    object-fit: cover;
}


/* ---------------------------------------------------------
   CONTENT
   --------------------------------------------------------- */

.why-choose-content {
    width: 100%;
    max-width: 680px;
}

.why-choose-eyebrow {
    display: inline-block;
    margin-bottom: 22px;

    color: #c85f06;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

}


.why-choose-title {
    max-width: 650px;

    margin: 0 0 24px;

    color: #0B1F35;

    font-size: clamp(42px, 4.2vw, 64px);
    line-height: 1.06;
    font-weight: 700;

    letter-spacing: -0.035em;
}


.why-choose-intro {
    max-width: 650px;

    margin: 0 0 24px;

    color: #52677E;

    font-size: 18px;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   DIFFERENTIATOR POINTS
   --------------------------------------------------------- */

.why-choose-points {
    width: 100%;
}


.why-choose-point {
    display: grid;

    grid-template-columns: 155px minmax(0, 1fr);
    gap: 28px;

    padding: 19px 0;

    border-top: 1px solid rgba(20, 56, 99, 0.10);
}


.why-choose-point:last-child {
    border-bottom: 1px solid rgba(20, 56, 99, 0.10);
}


/* ---------------------------------------------------------
   POINT LABEL
   --------------------------------------------------------- */

.why-choose-point-label {
    padding-top: 2px;

    color: #C85F06;

    font-size: 13px;
    line-height: 1.55;
    font-weight: 700;

    letter-spacing: 1px;
}


/* ---------------------------------------------------------
   POINT TEXT
   --------------------------------------------------------- */

.why-choose-point-text {
    color: #1E334C;

    font-size: 16px;
    line-height: 1.55;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .why-choose-section {
        padding: 70px 0 80px;
    }

    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .why-choose-image img {
        height: 480px;
    }

    .why-choose-content {
        max-width: 100%;
    }

    .why-choose-title {
        max-width: 800px;
    }

    .why-choose-intro {
        max-width: 800px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .why-choose-section {
        padding: 60px 0 70px;
    }

    .why-choose-container {
        width: calc(100% - 32px);

        gap: 35px;
    }

    .why-choose-image {
        border-radius: 15px;
    }

    .why-choose-image img {
        height: 340px;
    }

    .why-choose-eyebrow {
        margin-bottom: 17px;

        font-size: 13px;
        letter-spacing: 0.24em;
    }

    .why-choose-title {
        margin-bottom: 20px;

        font-size: 38px;
        line-height: 1.08;
        letter-spacing: -0.025em;
    }

    .why-choose-intro {
        margin-bottom: 20px;

        font-size: 17px;
        line-height: 1.6;
    }

    .why-choose-point {
        grid-template-columns: 1fr;
        gap: 8px;

        padding: 17px 0;
    }

    .why-choose-point-label {
        font-size: 11px;
    }

    .why-choose-point-text {
        font-size: 15px;
        line-height: 1.6;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .why-choose-section {
        padding: 55px 0 65px;
    }

    .why-choose-title {
        font-size: 34px;
    }

    .why-choose-image img {
        height: 300px;
    }

}

/* =========================================================
   WORK CULTURE
   ========================================================= */

.work-culture-section {
    background: #e9eef3;
    padding: 50px 0 60px;
}

.work-culture-container {
    width: min(100% - 48px, 1380px);
    margin: 0 auto;
}


/* ---------------------------------------------------------
   SECTION HEADER
   --------------------------------------------------------- */

.work-culture-header {
    max-width: 100%;
    margin: 0 0 42px;
}

.work-culture-eyebrow {
    display: inline-block;
    margin-bottom: 22px;

    color: #c85f06;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

}


.work-culture-title {
    max-width: 1050px;

    margin: 0 0 20px;

    color: #0B1F35;

    font-size: clamp(42px, 4.5vw, 64px);
    line-height: 1.06;
    font-weight: 700;

    letter-spacing: -0.035em;
}


.work-culture-intro {
    max-width: 850px;

    margin: 0;

    color: #43566D;

    font-size: 18px;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   CULTURE GRID
   --------------------------------------------------------- */

.work-culture-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 20px;
}


/* ---------------------------------------------------------
   CULTURE CARD
   --------------------------------------------------------- */

.work-culture-card {
    min-height: 245px;

    padding: 28px 30px 30px;

    background: #F7F9FC;

    border: 1px solid rgba(20, 56, 99, 0.10);
    border-radius: 18px;

    box-shadow: 0 8px 28px rgba(20, 56, 99, 0.045);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.work-culture-card:hover {
    transform: translateY(-3px);

    border-color: rgba(20, 56, 99, 0.18);

    box-shadow: 0 14px 35px rgba(20, 56, 99, 0.08);
}


/* ---------------------------------------------------------
   NUMBER
   --------------------------------------------------------- */

.work-culture-number {
    display: block;

    margin-bottom: 30px;

    color: #c85f06;

    font-size: 16px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 0.08em;
}


/* ---------------------------------------------------------
   CARD HEADING
   --------------------------------------------------------- */

.work-culture-card h3 {
    margin: 0 0 12px;

    color: #0B1F35;

    font-size: 27px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: -0.02em;
}


/* ---------------------------------------------------------
   CARD DESCRIPTION
   --------------------------------------------------------- */

.work-culture-card p {
    margin: 0;

    color: #52677E;

    font-size: 15px;
    line-height: 1.65;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .work-culture-section {
        padding: 70px 0 80px;
    }

    .work-culture-header {
        margin-bottom: 38px;
    }

    .work-culture-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .work-culture-card {
        min-height: auto;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .work-culture-section {
        padding: 60px 0 70px;
    }

    .work-culture-container {
        width: calc(100% - 32px);
    }

    .work-culture-header {
        margin-bottom: 35px;
    }

    .work-culture-eyebrow {
        display: inline-block;
    margin-bottom: 22px;

    color: #c85f06;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    }

    .work-culture-title {
        margin-bottom: 20px;

        font-size: 38px;
        line-height: 1.08;
        letter-spacing: -0.025em;
    }

    .work-culture-intro {
        font-size: 17px;
        line-height: 1.6;
    }

    .work-culture-grid {
        gap: 16px;
    }

    .work-culture-card {
        padding: 26px 24px 28px;

        border-radius: 15px;
    }

    .work-culture-number {
        margin-bottom: 26px;

        font-size: 15px;
    }

    .work-culture-card h3 {
        margin-bottom: 11px;

        font-size: 24px;
    }

    .work-culture-card p {
        font-size: 15px;
        line-height: 1.6;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .work-culture-section {
        padding: 55px 0 65px;
    }

    .work-culture-title {
        font-size: 34px;
    }

}

/* =========================================================
   WHO WE SERVE
   ========================================================= */

.who-we-serve-section {
    background: #F7F8FA;
    padding: 50px 0 60px;
}

.who-we-serve-container {
    width: min(100% - 48px, 1380px);
    margin: 0 auto;
}


/* ---------------------------------------------------------
   SECTION HEADER
   --------------------------------------------------------- */

.who-we-serve-header {
    max-width: 1000px;

    margin: 0 auto 48px;

    text-align: center;
}


.who-we-serve-eyebrow {
    display: inline-block;
    margin-bottom: 22px;

    color: #c85f06;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

}


.who-we-serve-title {
    max-width: 1000px;

    margin: 0 auto 20px;

    color: #0B1F35;

    font-size: clamp(42px, 4.5vw, 64px);
    line-height: 1.06;
    font-weight: 700;

    letter-spacing: -0.035em;
}


.who-we-serve-intro {
    max-width: 850px;

    margin: 0 auto;

    color: #52677E;

    font-size: 18px;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   INDUSTRY GRID
   --------------------------------------------------------- */

.who-we-serve-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


/* ---------------------------------------------------------
   INDUSTRY CARD
   --------------------------------------------------------- */

.who-we-serve-card {
    overflow: hidden;

    background: #EAF1F7;

    border: 1px solid rgba(20, 56, 99, 0.10);
    border-radius: 18px;

    box-shadow:
        0 8px 28px rgba(20, 56, 99, 0.045);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.who-we-serve-card:hover {
    transform: translateY(-4px);

    border-color: rgba(20, 56, 99, 0.18);

    box-shadow:
        0 14px 35px rgba(20, 56, 99, 0.08);
}


/* ---------------------------------------------------------
   IMAGE
   --------------------------------------------------------- */

.who-we-serve-image {
    width: 100%;

    aspect-ratio: 1.7 / 1;

    overflow: hidden;
}


.who-we-serve-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.45s ease;
}


.who-we-serve-card:hover
.who-we-serve-image img {
    transform: scale(1.03);
}


/* ---------------------------------------------------------
   CARD CONTENT
   --------------------------------------------------------- */

.who-we-serve-card-content {
    padding: 25px 26px 27px;
}


/* ---------------------------------------------------------
   CARD EYEBROW
   --------------------------------------------------------- */

.who-we-serve-card-eyebrow {
    display: block;

    margin-bottom: 13px;

    color: #c85f06;

    font-size: 14px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   CARD HEADING
   --------------------------------------------------------- */

.who-we-serve-card h3 {
    margin: 0 0 18px;

    color: #0B1F35;

    font-size: 27px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: -0.02em;
}


/* ---------------------------------------------------------
   CARD LIST
   --------------------------------------------------------- */

.who-we-serve-card ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.who-we-serve-card li {
    position: relative;

    margin: 0 0 9px;
    padding-left: 15px;

    color: #52677E;

    font-size: 14px;
    line-height: 1.5;
}


.who-we-serve-card li:last-child {
    margin-bottom: 0;
}


.who-we-serve-card li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0.65em;

    width: 5px;
    height: 5px;

    background: #c85f06;

    border-radius: 50%;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .who-we-serve-section {
        padding: 70px 0 80px;
    }

    .who-we-serve-header {
        margin-bottom: 42px;
    }

    .who-we-serve-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .who-we-serve-section {
        padding: 60px 0 70px;
    }

    .who-we-serve-container {
        width: calc(100% - 32px);
    }

    .who-we-serve-header {
        margin-bottom: 35px;
    }

    .who-we-serve-eyebrow {
        margin-bottom: 17px;

        font-size: 13px;
        letter-spacing: 0.24em;
    }

    .who-we-serve-title {
        margin-bottom: 20px;

        font-size: 38px;
        line-height: 1.08;
        letter-spacing: -0.025em;
    }

    .who-we-serve-intro {
        font-size: 17px;
        line-height: 1.6;
    }

    .who-we-serve-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .who-we-serve-card {
        border-radius: 15px;
    }

    .who-we-serve-image {
        aspect-ratio: 1.7 / 1;
    }

    .who-we-serve-card-content {
        padding: 23px 24px 25px;
    }

    .who-we-serve-card-eyebrow {
        margin-bottom: 12px;

        font-size: 11px;
    }

    .who-we-serve-card h3 {
        margin-bottom: 16px;

        font-size: 24px;
        line-height: 1.22;
    }

    .who-we-serve-card li {
        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .who-we-serve-section {
        padding: 55px 0 65px;
    }

    .who-we-serve-title {
        font-size: 34px;
    }

}

/* =========================================================
   LET'S TALK / CONTACT
   ========================================================= */

.lets-talk-section {
    background: #06172A;

    padding: 80px 0 90px;
}


.lets-talk-container {
    width: min(100% - 48px, 1380px);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    gap: 60px;

    align-items: start;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.lets-talk-content {
    padding-right: 15px;
}


.lets-talk-eyebrow {
    display: inline-block;

    margin-bottom: 22px;

    color: #FFB719;

    font-size: 14px;
    line-height: 1;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.lets-talk-title {
    max-width: 560px;

    margin: 0 0 24px;

    color: #FFFFFF;

    font-size: clamp(48px, 5vw, 68px);

    line-height: 0.98;

    font-weight: 700;

    letter-spacing: -0.045em;
}


.lets-talk-intro {
    max-width: 560px;

    margin: 0 0 42px;

    color: #A9BDD2;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================================
   CAPABILITY POINTS
   ========================================================= */

.lets-talk-point {
    display: grid;

    grid-template-columns: 48px 1fr;

    gap: 0;

    padding: 17px 0;

    border-bottom: 1px solid rgba(148, 191, 237, 0.18);
}


.lets-talk-point:first-of-type {
    border-top: 1px solid rgba(148, 191, 237, 0.18);
}


.lets-talk-point-number {
    padding-top: 1px;

    color: #FFB719;

    font-size: 16px;

    line-height: 1.4;

    font-weight: 700;
}


.lets-talk-point-content h3 {
    margin: 0 0 5px;

    color: #FFFFFF;

    font-size: 15px;

    line-height: 1.4;

    font-weight: 700;
}


.lets-talk-point-content p {
    margin: 0;

    color: #7592B1;

    font-size: 14px;

    line-height: 1.5;
}


/* =========================================================
   FORM CARD
   ========================================================= */

.lets-talk-form-card {
    padding: 34px 32px 31px;

    background: rgba(7, 27, 47, 0.78);

    border: 1px solid rgba(148, 191, 237, 0.25);

    border-radius: 17px;
}


.lets-talk-form-header {
    margin-bottom: 26px;
}


.lets-talk-form-header h3 {
    margin: 0 0 5px;

    color: #FFFFFF;

    font-size: 29px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -0.02em;
}


.lets-talk-form-header p {
    margin: 0;

    color: #8FAAC5;

    font-size: 13px;

    line-height: 1.5;
}


/* =========================================================
   FORM LAYOUT
   ========================================================= */

.lets-talk-form {
    width: 100%;
}


.lets-talk-form-row {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 15px;

    margin-bottom: 15px;
}


.lets-talk-field {
    min-width: 0;
}


.lets-talk-field label {
    display: block;

    margin-bottom: 7px;

    color: #FFFFFF;

    font-size: 12px;

    line-height: 1.3;

    font-weight: 700;
}


.lets-talk-field label span {
    color: #c85f06;

    margin-left: 2px;
}


/* =========================================================
   INPUTS
   ========================================================= */

.lets-talk-field input,
.lets-talk-field select,
.lets-talk-field textarea {
    display: block;

    width: 100%;

    box-sizing: border-box;

    background: #061626;

    border: 1px solid #28425D;

    border-radius: 7px;

    color: #FFFFFF;

    font-family: inherit;

    font-size: 13px;

    line-height: 1.5;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.lets-talk-field input,
.lets-talk-field select {
    height: 42px;

    padding: 0 14px;
}


.lets-talk-field textarea {
    min-height: 104px;

    padding: 12px 14px;

    resize: vertical;
}


.lets-talk-field input::placeholder,
.lets-talk-field textarea::placeholder {
    color: #607994;
}


.lets-talk-field select {
    color: #FFFFFF;

    cursor: pointer;
}


.lets-talk-field select:invalid {
    color: #FFFFFF;
}


.lets-talk-field select option {
    background: #061626;

    color: #FFFFFF;
}


.lets-talk-field input:focus,
.lets-talk-field select:focus,
.lets-talk-field textarea:focus {
    border-color: #c85f06;

    box-shadow:
        0 0 0 2px rgba(245, 169, 0, 0.10);

    background: #071A2D;
}


/* =========================================================
   MESSAGE
   ========================================================= */

.lets-talk-message-field {
    margin-bottom: 17px;
}


/* =========================================================
   BUTTON
   ========================================================= */

.lets-talk-submit {
    margin-top: 2px;
}


.lets-talk-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 22px;

    min-width: 188px;

    height: 49px;

    padding: 0 22px;

    border: 0;

    border-radius: 6px;

    background: #F5A900;

    color: #071A2D;

    font-family: inherit;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.lets-talk-button:hover {
    background: #FFB719;

    transform: translateY(-1px);

    box-shadow:
        0 7px 18px rgba(245, 169, 0, 0.18);
}


.lets-talk-button-arrow {
    font-size: 22px;

    line-height: 1;

    font-weight: 400;

    transition:
        transform 0.2s ease;
}


.lets-talk-button:hover
.lets-talk-button-arrow {
    transform: translateX(4px);
}



/* =========================================================
   PRIVACY NOTE
   ========================================================= */

.lets-talk-privacy {
    margin: 10px 0 0;

    color: #58728D;

    font-size: 11px;

    line-height: 1.4;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .lets-talk-section {
        padding: 70px 0 80px;
    }

    .lets-talk-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .lets-talk-content {
        max-width: 720px;

        padding-right: 0;
    }

    .lets-talk-title {
        max-width: 650px;
    }

    .lets-talk-intro {
        max-width: 650px;
    }

    .lets-talk-form-card {
        width: 100%;

        box-sizing: border-box;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .lets-talk-section {
        padding: 60px 0 70px;
    }

    .lets-talk-container {
        width: calc(100% - 32px);

        gap: 38px;
    }

    .lets-talk-eyebrow {
        margin-bottom: 18px;

        font-size: 12px;

        letter-spacing: 0.2em;
    }

    .lets-talk-title {
        margin-bottom: 20px;

        font-size: 42px;

        line-height: 1.02;
    }

    .lets-talk-intro {
        margin-bottom: 30px;

        font-size: 16px;

        line-height: 1.65;
    }

    .lets-talk-point {
        grid-template-columns: 40px 1fr;

        padding: 15px 0;
    }

    .lets-talk-point-number {
        font-size: 14px;
    }

    .lets-talk-point-content h3 {
        font-size: 14px;
    }

    .lets-talk-point-content p {
        font-size: 13px;
    }

    .lets-talk-form-card {
        padding: 27px 20px 25px;

        border-radius: 14px;
    }

    .lets-talk-form-header {
        margin-bottom: 23px;
    }

    .lets-talk-form-header h3 {
        font-size: 25px;
    }

    .lets-talk-form-row {
        grid-template-columns: 1fr;

        gap: 15px;

        margin-bottom: 15px;
    }

    .lets-talk-field input,
    .lets-talk-field select {
        height: 44px;
    }

    .lets-talk-field textarea {
        min-height: 120px;
    }

    .lets-talk-button {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .lets-talk-title {
        font-size: 38px;
    }

    .lets-talk-form-card {
        padding: 24px 17px 23px;
    }

}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: #FFFFFF;

    color: #29415B;

    padding: 64px 0 0;
}


/* =========================================================
   MAIN FOOTER CONTAINER
   ========================================================= */

.site-footer-container {
    width: min(100% - 48px, 1380px);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.6fr
        0.9fr
        0.9fr
        0.9fr
        1fr;

    gap: 50px;

    padding-bottom: 58px;
}


/* =========================================================
   BRAND
   ========================================================= */

.site-footer-brand {
    max-width: 350px;
}


.site-footer-logo {
    display: inline-flex;

    align-items: center;

    margin-bottom: 28px;

    text-decoration: none;
}


.site-footer-logo img {
    display: block;

    /*width: 230px;*/
    width: auto;

    height: 70px;
}


.site-footer-tagline {
    max-width: 350px;

    margin: 0 0 21px;

    color: #4C657D;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   SOCIAL LINKS
   ========================================================= */

.site-footer-social {
    display: flex;

    align-items: center;

    gap: 10px;
}


.site-footer-social-link {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    box-sizing: border-box;

    border: 1px solid #D5DFE8;

    border-radius: 7px;

    background: #FFFFFF;

    color: #0B1F35;

    font-size: 24px;

    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.site-footer-social-link:hover {
    background: #c85f06;

    border-color: #c85f06;

    color: #0B1F35;

    transform: translateY(-2px);
}


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.site-footer-column {
    min-width: 0;
}


.site-footer-column h3 {
    margin: 2px 0 22px;

    color: #0B1F35;

    font-size: 12px;

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.site-footer-column ul {
    list-style: none;

    margin: 0;

    padding: 0;
}


.site-footer-column li {
    margin: 0 0 14px;
}


.site-footer-column li:last-child {
    margin-bottom: 0;
}


.site-footer-column a {
    color: #526B82;

    font-size: 13px;

    line-height: 1.5;

    font-weight: 500;

    text-decoration: none;

    transition:
        color 0.2s ease;
}


.site-footer-column a:hover {
    color: #0B1F35;
}


/* =========================================================
   CONTACT COLUMN
   ========================================================= */

.site-footer-contact li {
    margin-bottom: 14px;
}


.site-footer-contact a {
    color: #526B82;
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.site-footer-bottom-container {
    width: min(100% - 48px, 1380px);

    margin: 0 auto;
}


.site-footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    min-height: 70px;

    border-top: 1px solid #D9E1E8;

    gap: 30px;
}


.site-footer-bottom p {
    margin: 0;

    color: #5B7186;

    font-size: 12px;

    line-height: 1.5;
}


.site-footer-bottom p:last-child {
    text-align: right;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .site-footer {
        padding-top: 55px;
    }

    .site-footer-container {
        grid-template-columns:
            1.5fr
            1fr
            1fr;

        gap: 45px 35px;

        padding-bottom: 50px;
    }

    .site-footer-brand {
        grid-column: span 3;

        max-width: 500px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .site-footer {
        padding-top: 50px;
    }

    .site-footer-container {
        width: calc(100% - 32px);

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 38px 28px;

        padding-bottom: 42px;
    }

    .site-footer-brand {
        grid-column: span 2;

        max-width: 100%;
    }

    .site-footer-logo {
        margin-bottom: 22px;
    }

    .site-footer-logo img {
        width: 210px;
    }

    .site-footer-tagline {
        max-width: 450px;

        font-size: 14px;
    }

    .site-footer-column h3 {
        margin-bottom: 18px;
    }

    .site-footer-bottom-container {
        width: calc(100% - 32px);
    }

    .site-footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 8px;

        min-height: 90px;
    }

    .site-footer-bottom p:last-child {
        text-align: left;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .site-footer-container {
        grid-template-columns: 1fr;

        gap: 32px;
    }

    .site-footer-brand {
        grid-column: span 1;
    }

    .site-footer-column {
        width: 100%;
    }

    .site-footer-bottom {
        min-height: 95px;
    }

}

.back-to-top {
    position: fixed;
    right: 28px;
    bottom: 30px;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(11, 31, 53, 0.25);
    border-radius: 50%;

    background: #FFFFFF;
    color: #0B1F35;

    font-size: 28px;
    line-height: 1;
    text-decoration: none;

    box-shadow: 0 6px 18px rgba(11, 31, 53, 0.10);

    z-index: 1000;

    transition:
        transform 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.back-to-top:hover {
    transform: translateY(-3px);

    color: #F5A900;
    border-color: #F5A900;

    box-shadow: 0 9px 22px rgba(11, 31, 53, 0.15);
}

/* =========================================
   OUR LEADERSHIP
========================================= */

.leadership-section {
    position: relative;
    overflow: hidden;

    padding: 50px 0 60px;

    background: #F7F8FA;
}


/* =========================================
   CONTAINER
========================================= */

.leadership-container {
    width: min(100% - 48px, 1380px);
    margin: 0 auto;
}


/* =========================================
   SECTION HEADER
========================================= */

.leadership-header {
    max-width: 900px;
    margin: 0 auto 55px;

    text-align: center;
}


.leadership-eyebrow {
    display: inline-block;
    margin-bottom: 22px;

    color: #c85f06;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

}


.leadership-header h2 {
    margin: 0;

    color: #0B1F35;

    font-size: clamp(42px, 4vw, 62px);
    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -0.035em;
}


.leadership-header h2 span {
    display: block;
}


.leadership-header p {
    max-width: 720px;
    margin: 22px auto 0;

    color: #52657A;

    font-size: 17px;
    line-height: 1.7;
}


/* =========================================
   LEADERSHIP GRID
========================================= */

.leadership-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;
}


/* =========================================
   LEADERSHIP CARD
========================================= */

.leadership-card {
    display: flex;

    align-items: stretch;

    gap: 0;
    padding: 0;

    overflow: hidden;

    background: #FFFFFF;

    border: 1px solid rgba(20, 56, 99, 0.10);
    border-radius: 16px;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.leadership-card:hover {
    transform: translateY(-4px);

    border-color: rgba(245, 169, 0, 0.45);

    box-shadow: 0 14px 32px rgba(11, 31, 53, 0.08);
}


/* =========================================
   LEADERSHIP IMAGE
========================================= */

.leadership-image-wrap {
    flex: 0 0 32%;

    width: 32%;

    align-self: stretch;

    overflow: hidden;

    border-radius: 0;

    background: #EEF2F6;
}


.leadership-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center bottom;
}


/* =========================================
   LEADERSHIP CONTENT
========================================= */

.leadership-content {
    flex: 1;

    min-width: 0;

    padding: 32px;
}


.leadership-role {
    display: inline-flex;

    align-items: center;

    padding: 7px 14px;
    margin-bottom: 14px;

    background: rgba(245, 169, 0, 0.10);

    border: 1px solid rgba(245, 169, 0, 0.25);
    border-radius: 999px;

    color: #B87900;

    font-size: 11px;
    line-height: 1;

    font-weight: 700;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}


.leadership-content h3 {
    margin: 0;

    color: #0B1F35;

    font-size: 26px;
    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -0.02em;
}


.leadership-divider {
    width: 46px;
    height: 2px;

    margin: 16px 0;

    background: #D6A52E;
}


.leadership-content p {
    margin: 0;

    color: #52657A;

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .leadership-content {
        padding: 26px;
    }


    .leadership-content h3 {
        font-size: 23px;
    }


    .leadership-content p {
        font-size: 14px;
    }

}


/* =========================================
   SMALL TABLET
========================================= */

@media (max-width: 850px) {

    .leadership-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .leadership-card {
        max-width: 850px;

        width: 100%;

        margin: 0 auto;
    }


    .leadership-image-wrap {
        flex-basis: 30%;

        width: 30%;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .leadership-section {
        padding: 50px 0 60px;
    }


    .leadership-container {
        width: min(100% - 32px, 1380px);
    }


    .leadership-header {
        margin-bottom: 36px;
    }


    .leadership-eyebrow {
        font-size: 13px;

        letter-spacing: 0.22em;
    }


    .leadership-header h2 {
        font-size: 38px;

        line-height: 1.12;
    }


    .leadership-header p {
        margin-top: 18px;

        font-size: 15px;

        line-height: 1.65;
    }


    /* -----------------------------------------
       MOBILE CARD
    ----------------------------------------- */

    .leadership-card {
        flex-direction: column;

        align-items: stretch;
    }


    /* -----------------------------------------
       MOBILE IMAGE
    ----------------------------------------- */

    .leadership-image-wrap {
        flex: none;

        width: 100%;
        height: 300px;
    }


    .leadership-image {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center top;
    }


    /* -----------------------------------------
       MOBILE CONTENT
    ----------------------------------------- */

    .leadership-content {
        width: 100%;

        padding: 24px 22px 26px;
    }


    .leadership-content h3 {
        font-size: 24px;
    }


    .leadership-content p {
        font-size: 14px;

        line-height: 1.7;
    }

}

.website-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}


/* =========================================================
   CONTACT FORM STATUS MESSAGE
========================================================= */

.lets-talk-form-status {
    display: none;

    margin-top: 14px;

    font-size: 14px;
    line-height: 1.6;
}


.lets-talk-form-status.success,
.lets-talk-form-status.error {
    display: block;
}


.lets-talk-form-status.success {
    color: #7CCB8B;
}


.lets-talk-form-status.error {
    color: #FF8A8A;
}


/* =========================================================
   SUBMIT BUTTON LOADING STATE
========================================================= */

.lets-talk-button:disabled {
    opacity: 0.7;

    cursor: not-allowed;
}


.lets-talk-button:disabled:hover {
    transform: none;
}