*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── CSS VARIABLES (eSign source) ── */
:root {
    --navy: #071D42;
    --navy-mid: #0F3580;
    --navy-lt: #1E52B8;
    --orange: #E8721A;
    --orange-dk: #C05A0D;
    --orange-lt: #FDF0E6;
    --sky: #EBF2FD;
    --sky-mid: #B8D0F7;
    --muted: #5A7CB0;
    --white: #FFFFFF;
    --bg: #F2F5FB;
    --border: #D0DCEE;
    --text-dark: #0B1E3D;
    --text-body: #3D5A80;
    --green: #15803D;
    --green-lt: #DCFCE7;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.18);
        opacity: .7;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.fade-up {
    animation: fadeUp .7s ease both;
}

.delay-1 {
    animation-delay: .15s;
}

.delay-2 {
    animation-delay: .3s;
}

.delay-3 {
    animation-delay: .45s;
}

.delay-4 {
    animation-delay: .6s;
}

/* ══════════════════════════════════════════
   TOPBAR — exact eSign/eStamp header
   ══════════════════════════════════════════ */
.topbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 24px rgba(7, 29, 66, .07);
}

.logo-row {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    padding: 0;
    background: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-item {
    position: relative;
}

.nav-item>a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background .15s, color .15s;
    white-space: nowrap;
}

.nav-item>a:hover {
    background: var(--sky);
    color: var(--navy);
}

.nav-item>a.active {
    color: var(--navy);
    font-weight: 700;
}

.chev {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    transition: transform .2s;
}

.nav-item:hover .chev {
    transform: rotate(180deg);
}

.dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    min-width: 260px;
    box-shadow: 0 16px 48px rgba(7, 29, 66, .14);
    padding: 8px 0;
    z-index: 400;
}

.nav-item:hover .dropdown {
    display: block;
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-body);
    text-decoration: none;
    transition: background .12s, color .12s;
}

.dropdown a:hover {
    background: var(--sky);
    color: var(--navy);
}

.dropdown-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.nav-btns {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-out {
    padding: 9px 20px;
    border: 1.5px solid var(--navy);
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    background: transparent;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .15s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-out:hover {
    background: var(--navy);
    color: #fff;
}

.btn-fill {
    padding: 9px 22px;
    border: none;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: var(--orange);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    box-shadow: 0 4px 16px rgba(232, 114, 26, .32);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.btn-fill:hover {
    background: var(--orange-dk);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(232, 114, 26, .38);
}

/* ── HAMBURGER / MOBILE MENU (exact eSign) ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border: none;
    background: none;
    padding: 4px;
    border-radius: 8px;
    transition: background .15s;
}

.hamburger:hover {
    background: var(--sky);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all .25s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 1000;
    opacity: 0;
    transition: opacity .25s;
}

.mobile-overlay.visible {
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 90vw);
    background: var(--white);
    z-index: 1001;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -4px 0 32px rgba(7, 29, 66, .18);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--border);
}

.mm-close {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--sky);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--navy);
}

.mm-nav {
    padding: 12px 0;
}

.mm-link {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: background .12s;
}

.mm-link:hover {
    background: var(--sky);
    color: var(--navy);
}

.mm-section-title {
    padding: 8px 20px 4px;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.mm-sub-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px 28px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-body);
    text-decoration: none;
    transition: background .12s;
}

.mm-sub-link:hover {
    background: var(--sky);
    color: var(--navy);
}

.mm-sub-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.mm-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 20px;
}

.mm-cta-row {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
}

/* ── HERO (Our Team specific — keep unchanged) ── */
.hero {
    background: linear-gradient(135deg, #050F24 0%, #071D42 45%, #0F3580 100%);
    padding: 88px 64px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 32px 32px;
    margin-bottom: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 72% 25%, rgba(232, 114, 26, .16) 0%, transparent 52%), radial-gradient(ellipse at 18% 78%, rgba(30, 95, 191, .22) 0%, transparent 48%), repeating-linear-gradient(0deg, transparent, transparent 54px, rgba(255, 255, 255, .016) 54px, rgba(255, 255, 255, .016) 55px), repeating-linear-gradient(90deg, transparent, transparent 54px, rgba(255, 255, 255, .016) 54px, rgba(255, 255, 255, .016) 55px);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
    opacity: .14;
}

.orb1 {
    width: 420px;
    height: 420px;
    background: var(--orange);
    right: -90px;
    top: -80px;
    animation: float 7s ease-in-out infinite;
}

.orb2 {
    width: 280px;
    height: 280px;
    background: var(--navy-mid);
    left: -60px;
    bottom: -40px;
    animation: float 5s ease-in-out infinite 2s;
}

.hero-center {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 760px;
    width: 100%;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-bottom: 28px;
}

.breadcrumb span {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
}

.breadcrumb .cur {
    color: var(--orange);
}

.bc-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 114, 26, .18);
    border: 1px solid rgba(232, 114, 26, .35);
    border-radius: 24px;
    padding: 7px 18px;
    font-size: 11.5px;
    font-weight: 700;
    color: #FFB37D;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -.02em;
}

.hero h1 em {
    color: var(--orange);
    font-style: normal;
}

.hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, .68);
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 620px;
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.hchip {
    padding: 7px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .08);
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, .82);
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(6px);
}

.hchip-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--orange);
}

/* ── WRAP ── */
.wrap {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 28px 72px;
}

/* ── SECTION HEADER ── */
.sec-head {
    text-align: center;
    margin-bottom: 48px;
}

.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--orange-lt);
    border: 1px solid rgba(232, 114, 26, .28);
    border-radius: 24px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.sec-title {
    font-family: 'Sora', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 11px;
    letter-spacing: -.01em;
}

.sec-title em {
    color: var(--orange);
    font-style: normal;
}

.sec-desc {
    font-size: 15px;
    color: var(--text-body);
    max-width: 660px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ── LEADERSHIP SECTION ── */
.leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 60px;
}

.leader-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(7, 29, 66, .07);
    transition: all .25s;
}

.leader-card:hover {
    box-shadow: 0 16px 56px rgba(7, 29, 66, .14);
    transform: translateY(-6px);
}

.lc-banner {
    height: 140px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 32px 0;
}

.lc-banner-ceo {
    background: linear-gradient(135deg, #071D42 0%, #0F3580 100%);
}

.lc-banner-cof {
    background: linear-gradient(135deg, #C05A0D 0%, #E8721A 100%);
}

.lc-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 24px, rgba(255, 255, 255, .04) 24px, rgba(255, 255, 255, .04) 25px);
}

.lc-banner-pattern {
    position: absolute;
    right: -20px;
    top: -20px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 40px solid rgba(255, 255, 255, .06);
}

.lc-banner-pattern2 {
    position: absolute;
    right: 60px;
    bottom: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 30px solid rgba(255, 255, 255, .04);
}

.lc-avatar-wrap {
    position: relative;
    z-index: 2;
    margin-bottom: -52px;
    padding: 0 32px;
}

.lc-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 4px 20px rgba(7, 29, 66, .18);
    overflow: hidden;
    background: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lc-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lc-avatar-fallback {
    font-family: 'Sora', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--navy-mid);
}

.lc-body {
    padding: 64px 32px 28px;
}

.lc-role-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.lc-role-ceo {
    background: #E8F0FD;
    color: var(--navy-mid);
}

.lc-role-cof {
    background: var(--orange-lt);
    color: var(--orange-dk);
}

.lc-name {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
    letter-spacing: -.01em;
}

.lc-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 18px;
}

.lc-bio {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.78;
    margin-bottom: 22px;
}

.lc-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.lc-skill {
    padding: 5px 12px;
    border-radius: 10px;
    background: var(--sky);
    border: 1px solid var(--border);
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
}

.lc-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.lc-soc {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid var(--border);
    background: var(--sky);
    color: var(--navy-mid);
    transition: all .18s;
}

.lc-soc:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(7, 29, 66, .2);
}

.lc-connect-lbl {
    margin-left: auto;
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

.lc-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 22px;
}

.lc-stat {
    background: var(--sky);
    border-radius: 12px;
    padding: 12px 14px;
    text-align: center;
    border: 1px solid var(--border);
}

.lc-stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.lc-stat-lbl {
    font-size: 11px;
    color: var(--text-body);
    margin-top: 3px;
    line-height: 1.4;
}

/* ── TEAM CULTURE SECTION ── */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

.culture-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(7, 29, 66, .05);
    transition: all .22s;
    text-align: center;
}

.culture-card:hover {
    box-shadow: 0 10px 36px rgba(7, 29, 66, .12);
    transform: translateY(-4px);
}

.cc-ico {
    font-size: 36px;
    margin-bottom: 14px;
    display: block;
}

.cc-title {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.cc-desc {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.7;
}

/* ── EXPERTISE BANNER ── */
.expertise-strip {
    background: linear-gradient(110deg, #050F24 0%, #071D42 50%, #0F3580 100%);
    border-radius: 24px;
    padding: 44px 52px;
    margin-bottom: 56px;
    position: relative;
    overflow: hidden;
}

.expertise-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 40%, rgba(232, 114, 26, .14) 0%, transparent 55%), repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255, 255, 255, .02) 40px, rgba(255, 255, 255, .02) 41px);
}

.es-head {
    position: relative;
    text-align: center;
    margin-bottom: 36px;
}

.es-head h2 {
    font-family: 'Sora', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.es-head p {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

.expertise-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.exp-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 16px;
    padding: 22px 18px;
    text-align: center;
    transition: background .2s;
}

.exp-card:hover {
    background: rgba(255, 255, 255, .14);
}

.exp-ico {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
}

.exp-title {
    font-family: 'Sora', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.exp-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.55;
}

/* ── JOIN US SECTION ── */
.join-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 52px 52px 44px;
    margin-bottom: 52px;
    box-shadow: 0 2px 16px rgba(7, 29, 66, .05);
}

.join-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.join-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--orange-lt);
    border: 1px solid rgba(232, 114, 26, .25);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.join-title {
    font-family: 'Sora', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.28;
    margin-bottom: 14px;
}

.join-title em {
    color: var(--orange);
    font-style: normal;
}

.join-desc {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 24px;
}

.join-perks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.join-perk {
    display: flex;
    align-items: center;
    gap: 12px;
}

.jp-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--orange-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.jp-text {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-dark);
}

.join-btn {
    margin-top: 26px;
    padding: 13px 30px;
    background: var(--navy);
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: background .15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.join-btn:hover {
    background: var(--navy-mid);
}

.join-btn svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
}

.join-visual {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.join-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255, 255, 255, .028) 30px, rgba(255, 255, 255, .028) 31px);
}

.jv-card {
    position: relative;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.jv-ico {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--orange-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
}

.jv-title {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.jv-sub {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .5);
}

.jv-badge {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 800;
    margin-left: auto;
    flex-shrink: 0;
}

/* ── CTA STRIP ── */
.cta-strip {
    background: linear-gradient(110deg, #050F24 0%, #071D42 50%, #0F3580 100%);
    border-radius: 24px;
    padding: 44px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
    margin-bottom: 48px;
}

.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(232, 114, 26, .14) 0%, transparent 55%), repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255, 255, 255, .02) 40px, rgba(255, 255, 255, .02) 41px);
}

.cta-left {
    position: relative;
}

.cta-left h3 {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.cta-left p {
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    max-width: 480px;
    line-height: 1.75;
}

.cta-btns {
    position: relative;
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-white {
    padding: 12px 28px;
    border-radius: 11px;
    background: #fff;
    border: none;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
    transition: all .15s;
}

.btn-white:hover {
    background: var(--sky);
}

.btn-ghost {
    padding: 12px 28px;
    border-radius: 11px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .3);
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
    transition: all .15s;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .1);
}

/* ══════════════════════════════════════════
   FOOTER — exact eSign/eStamp footer
   ══════════════════════════════════════════ */
footer {
    background: #040D1E;
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.8;
    margin-top: 16px;
    max-width: 300px;
}

.footer-legal {
    margin-top: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, .3);
    line-height: 1.7;
}

.footer-col-title {
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .35);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    transition: color .15s;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, .3);
}

.footer-bottom a {
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--orange);
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--sky-mid);
    border-radius: 6px;
}

/* ══════════════════════════════════════════
   MOBILE-FIRST RESPONSIVE — matches eSign
   ══════════════════════════════════════════ */
a,
button {
    -webkit-tap-highlight-color: transparent;
}

button,
a {
    touch-action: manipulation;
}

* {
    max-width: 100%;
}

img,
video,
iframe,
table {
    max-width: 100%;
}

@media(max-width:1100px) {
    .topbar {
        padding: 0 28px;
    }

    .wrap {
        padding: 0 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        grid-template-columns: 1fr 1fr;
    }

    .culture-grid {
        grid-template-columns: 1fr 1fr;
    }

    .join-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media(max-width:900px) {

    .nav-links,
    .nav-btns {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .topbar {
        padding: 0 16px;
        height: 64px;
    }

    .wrap {
        padding: 0 20px;
    }

    .hero {
        padding: 64px 24px 60px;
        border-radius: 0 0 20px 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .culture-grid {
        grid-template-columns: 1fr 1fr;
    }

    .expertise-grid {
        grid-template-columns: 1fr 1fr;
    }

    .expertise-strip {
        padding: 32px 28px;
    }

    .join-section {
        padding: 36px 28px 32px;
    }

    .cta-strip {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        margin-bottom: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-bottom>div:last-child {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }
}

@media(max-width:768px) {
    .wrap {
        padding: 0 16px;
    }

    .hero {
        padding: 52px 18px 48px;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.15;
    }

    .hero-desc {
        font-size: 14px;
    }

    .hero-chips {
        gap: 8px;
    }

    .hchip {
        font-size: 11px;
        padding: 6px 12px;
    }

    .sec-title {
        font-size: 24px;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .lc-body {
        padding: 56px 20px 24px;
    }

    .lc-avatar-wrap {
        padding: 0 20px;
    }

    .lc-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .culture-grid {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        grid-template-columns: 1fr 1fr;
    }

    .expertise-strip {
        padding: 28px 20px;
    }

    .join-section {
        padding: 28px 18px 24px;
    }

    .join-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cta-strip {
        padding: 28px 20px;
    }

    .cta-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn-white,
    .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .mobile-menu {
        width: min(320px, 92vw);
    }

    .mm-link {
        padding: 13px 20px;
        font-size: 14.5px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .mm-sub-link {
        min-height: 44px;
    }

    .mm-cta-row .btn-fill,
    .mm-cta-row .btn-out {
        padding: 13px 20px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
        min-height: 44px;
        display: flex;
        align-items: center;
        border-radius: 10px;
    }
}

@media(max-width:480px) {
    .hero h1 {
        font-size: 24px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .lc-stats {
        grid-template-columns: 1fr 1fr;
    }

    .join-visual {
        padding: 22px 18px;
    }
}

@media(prefers-reduced-motion:no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

@media(hover:none) {

    .leader-card:hover,
    .culture-card:hover,
    .exp-card:hover,
    .jv-card:hover {
        transform: none;
        box-shadow: none;
    }

    .btn-fill:hover,
    .btn-out:hover,
    .btn-white:hover,
    .btn-ghost:hover {
        transform: none;
    }
}