:root {
    --navy-deep: #0a1530;
    --navy: #0e1b3d;
    --hero-grad-1: #16294f;
    --hero-grad-2: #0c1a38;
    --gold: #dcb143;
    --bg-light: #f7f6f4
        /* #f2f1ef*/
    ;
    --ink: #041320;
    --gray-text: #606060;
    --line: #d8d6d1;
    --font: "Poppins", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg-light);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.scroll-progress {
    position: fixed;
    inset: 0 auto auto 0;
    z-index: 100;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    transform: scaleX(0);
    transform-origin: left center;
}

.logo-personal {
    bottom: 20px;
    right: 20px;
    z-index: 2;
    width: 320px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logo-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: 'Montserrat-Medium', sans-serif;
    color: white;
    font-size: 14px;
}

.logo-personal img {
    width: 100px;
    height: auto;
}

.logo-superior {
    transition: transform 0.3s ease;
    transform-origin: left center;
    top: 20px;
    left: 50px;
    z-index: 2;
    width: 300px;
}



img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 64px;
    transition:
        background 0.5s,
        padding 0.5s;
}

nav.scrolled {
    background: rgba(10, 21, 48, 0.9);
    backdrop-filter: blur(12px);
    padding: 0px 64px;
}

nav.scrolled .logo-superior {
    width: 170px;
    top: 0px;
    transform: scale(0.8);
}

.logo {
    align-items: center;
}

.logo .mk {
    width: 46px;
    height: 24px;
}

.logo .mk svg {
    width: 100%;
    height: 100%;
}

.logo .txt {
    color: #fff;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    line-height: 1;
}

.logo .txt small {
    display: block;
    font-size: 0.5rem;
    letter-spacing: 0.42em;
    font-weight: 400;
    color: #fff;
    margin-top: 2px;
}

.logo .txt b {
    color: var(--gold);
}

.navlinks {
    display: flex;
    gap: 46px;
    list-style: none;
}

.navlinks a {
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    font-weight: 400;
    position: relative;
    padding-bottom: 4px;
}

.navlinks a.active,
.navlinks a:hover {
    color: var(--gold);
}

.navlinks a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 34px;
    height: 26px;
    position: relative;
    z-index: 1001;
}

.nav-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition:
        transform 0.4s ease,
        opacity 0.3s ease,
        top 0.4s ease;
}

.nav-toggle span:nth-child(1) {
    top: 2px;
}

.nav-toggle span:nth-child(2) {
    top: 12px;
}

.nav-toggle span:nth-child(3) {
    top: 22px;
}

.nav-toggle.open span:nth-child(1) {
    top: 12px;
    transform: rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    top: 12px;
    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: linear-gradient(150deg,
            var(--hero-grad-1),
            var(--navy-deep));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    padding: 18px 0;
    opacity: 0;
    transform: translateY(24px);
    transition: color 0.3s;
}

.mobile-menu.open a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu a:nth-child(1) {
    transition:
        opacity 0.5s 0.15s,
        transform 0.5s 0.15s,
        color 0.3s;
}

.mobile-menu a:nth-child(2) {
    transition:
        opacity 0.5s 0.25s,
        transform 0.5s 0.25s,
        color 0.3s;
}

.mobile-menu a:nth-child(3) {
    transition:
        opacity 0.5s 0.35s,
        transform 0.5s 0.35s,
        color 0.3s;
}

.mobile-menu a:nth-child(4) {
    transition:
        opacity 0.5s 0.45s,
        transform 0.5s 0.45s,
        color 0.3s;
}

.mobile-menu a:active,
.mobile-menu a:hover {
    color: var(--gold);
}

@media (max-width: 900px) {
    .navlinks {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    nav {
        padding: 20px 24px;
    }
}

@media (min-width: 901px) {
    .mobile-menu {
        display: none;
    }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(110deg, var(--hero-grad-1) 0%, var(--hero-grad-2) 55%, #0a1632 100%)
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden
}

.hero-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 1.1s cubic-bezier(.65, 0, .35, 1)
}

.hero-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    transition: transform 6s ease-out
}

.hero-slide.active img {
    transform: scale(1)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(100deg, var(--hero-grad-1) 0%, rgba(14, 27, 61, .92) 22%, rgba(22, 41, 79, .6) 48%, rgba(10, 22, 50, .25) 100%)
}

.hero-inner {
    position: relative;
    z-index: 3;
    margin: 0 auto;
    padding: 120px 64px 90px 120px;
    width: 100%
}

@media(max-height:680px) {
    .hero {
        align-items: flex-start !important;
        min-height: auto
    }

    .hero-inner {
        padding-top: 170px;
        padding-bottom: 60px
    }
}

.hero h1 {
    color: #fff;
    font-weight: 400;
    font-size: clamp(2.6rem, 5.4vw, 4.6rem);
    line-height: 1.08;
    max-width: 60%;
    letter-spacing: -.5px
}

.hero .divider {
    width: 90px;
    height: 2px;
    background: rgba(255, 255, 255, .5);
    margin: 34px 0
}

.hero p.sub {
    color: #fff;
    font-size: clamp(1.1rem, 1.7vw, 1.5rem);
    font-weight: 300;
    max-width: 26ch;
    line-height: 1.45
}

.hero p.sub b {
    font-weight: 600
}

.hero-btn {
    display: inline-block;
    margin-top: 44px;
    background: #fff;
    color: var(--navy);
    padding: 20px 44px;
    border-radius: 40px;
    font-weight: 600;
    font-size: .92rem;
    letter-spacing: .08em;
    transition: .4s
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .3)
}

.hero-dots {
    position: absolute;
    bottom: 46px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 12px
}

.hero-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: .3s
}

.hero-dots span.on {
    background: #fff;
    width: 26px;
    border-radius: 5px
}



@media(max-width:900px) {
    .hero h1 {
        max-width: 100%
    }
}

/* ===== STATS ===== */
.stats {
    background: var(--bg-light);
    padding: 96px 64px;
}

.stats h2 {
    text-align: center;
    font-weight: 600;
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    color: var(--ink);
    margin-bottom: 70px;
}

.stats-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    padding: 0 38px;
    border-right: 1px solid var(--line);
    text-align: center;
}

.stat:last-child {
    border-right: none;
}

.stat .num {
    font-weight: 300;
    font-size: clamp(3rem, 5vw, 4.3rem);
    line-height: 1;
    color: var(--ink);
}


.stat:hover .num,
.stat:hover .t,
.stat:hover .d {
    color: var(--gold);
}

.stat .t {
    font-weight: 600;
    font-size: 1rem;
    color: var(--ink);
    margin: 18px 0 8px;
}

.stat .d {
    font-weight: 400;
    font-size: 0.92rem;
    color: var(--gray-text);
    line-height: 1.5;
}

@media (min-width: 760px) and (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
    }

    .stat {
        border-right: none;
    }

    .stat:nth-child(odd) {
        border-right: 1px solid var(--line);
    }
}

@media (max-width: 760px) {
    .stats-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px 0;
    }

    .stat {
        width: 100%;
        border-bottom: 1px solid var(--line);
        border-right: none;
    }

    .stat:nth-child(odd) {
        border-right: none;
    }
}

.logoAvianca {
    filter: invert(33%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(93%) contrast(89%);
    width: 180px;
    height: auto;
}

.logoSky {
    width: 140px;
    height: auto;
}

.logoEquipag {
    width: 210px;
    height: auto;
}

.logoDavissa {
    width: 180px;
    height: auto;
}

.logoCristobal{
    filter: invert(33%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(93%) contrast(89%);
 width: 180px;
    height: auto;
}

.logoFracht{
    filter: invert(33%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(93%) contrast(89%);
 width: 180px;
    height: auto;
}

.logoMacCenter{
    filter: invert(33%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(93%) contrast(0%);
    width: 180px;
    height: auto;
}

.clients {
    max-width: 1240px;
    margin: 80px auto 0;
    overflow: hidden;
    position: relative;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent)
}

.clients.dragging {
    cursor: grabbing;
}

.clients-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 90px;
    will-change: transform
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.clients .cl {
    flex: 0 0 auto;
    font-weight: 700;
    font-size: 1.9rem;
    color: #9aa0a8;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: color .4s
}

.clients .cl.box {
    border: 3px solid #9aa0a8;
    border-radius: 6px;
    padding: 4px 14px;
    font-size: 1.4rem
}

.clients .cl:hover {
    color: var(--ink)
}

/* ===== BANNER ===== */
.banner {
    background-image: url(assets/backgrounds/map-world.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 240px 64px;
    position: relative;
    overflow: hidden;
}

.banner-inner {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.banner h3 {
    color: #fff;
    font-weight: 600;
    font-size: clamp(1.5rem, 3.2vw, 2.4rem);
    line-height: 1.4;
}

.banner h3 b {
    color: var(--gold);
}

/* ===== PURPOSE ===== */
.purpose {
    background: var(--bg-light);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.purpose-text {
    align-self: center;
    padding: 110px 64px 110px 60px;
    max-width: 740px;
    margin-left: auto;
}

.purpose-text h2 {
    font-weight: 600;
    /*font-size: clamp(1.7rem, 2.6vw, 2rem);*/
    font-size: clamp(2.7rem, 3.6vw, 3rem);
    margin-bottom: 40px;
}

.purpose-text p {
    font-weight: 300;
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 26px;
}

.purpose-text p b {
    font-weight: 600;
    color: var(--gray-text);
}

.purpose-img {
    align-self: anchor-center;
    min-height: 560px;
    background-size: cover;
    background-position: center;
}

@media (max-width: 900px) {
    .purpose {
        grid-template-columns: 1fr;
    }

    .purpose-text {
        padding: 70px 32px;
        max-width: 100%;
        margin: 0;
    }

    .purpose-img {
        min-height: 340px;
    }
}

/* ===== DIFERENCIALES ===== */
.diff {
    background: linear-gradient(to top, #d7d7d738, #f2f2f2);
    padding: 60px 64px 130px;
}

.diff h2 {
    text-align: center;
    font-weight: 600;
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    margin-bottom: 90px;
}

.diff-wrap {
    margin: 0 auto;
    position: relative;
}

.diff-heads {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;         
}

.diff-head {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

.diff-head .ic {
    width: 90px;
    height: 90px;
    color: var(--navy);
}

.diff-head .ic svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: var(--navy);
    stroke-width: 1.6;
}

.diff-head h4 {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.1;
    color: var(--ink);
}

.diff-head.h2pos {
    display: block;              
    align-self: start;
}

.diff-head.h2pos .mid-top-text {
    font-weight: 300;
    font-size: .98rem;
    line-height: 1.6;
    color: var(--gray-text);
    padding: 0 30px;
    text-align: left;
    margin: 0;
}

.diff-line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 34px 0 0;
}

.diff-line::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 15%;
    right: 15%;
    border-top: 2px dotted var(--gold);
    z-index: 0;
}

.diff-circle {
    position: relative;
    z-index: 1;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    font-weight: 500;
    justify-self: center;
}

.diff-bodies {
    margin-left: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 40px;
}

.diff-body {
    padding: 0 30px;
}

.diff-body h5 {
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 18px;
    color: var(--ink);
}

.diff-body.mid h5 {
    margin-bottom: 0;
    text-align: center;
    margin-left: -60px;
}

.diff-body .m-title {
    display: none;
}

.diff-body.mid .mid-mobile-text {
    display: none;
}

.diff-body p {
    font-weight: 300;
    font-size: .98rem;
    line-height: 1.6;
    color: var(--gray-text);
}

@media(max-width:1100px) {
    .diff-heads {
        display: none;
    }

    .diff-wrap {
        display: grid;
        grid-template-columns: 52px 1fr;
        column-gap: 22px;
        max-width: 520px;
        position: relative;
    }

    .diff-wrap::before {
        content: "";
        position: absolute;
        left: 26px;
        top: 26px;
        bottom: 25%;
        border-left: 2px dotted var(--gold);
        transform: translateX(-1px);
        z-index: 0;
    }
    .diff-line {
        display: contents;
    }

    .diff-line::before {
        display: none;
    }

    .diff-circle {
        position: relative;
        width: 52px;
        height: 52px;
        font-size: 1.02rem;
        justify-self: center;
        align-self: start;
        z-index: 1;
        background: var(--gold);
        border-radius: 50%;
    }

    .diff-circle::after {
        font-size: 1.5rem;
        font-weight: 600;
        color: #fff;
    }

    .diff-circle:nth-of-type(1) { grid-column: 1; grid-row: 1; }
    .diff-circle:nth-of-type(2) { grid-column: 1; grid-row: 2; }
    .diff-circle:nth-of-type(3) { grid-column: 1; grid-row: 3; }

    .diff-bodies {
        display: contents;
        margin-left: 0;
    }

    .diff-body {
        padding: 0;
        margin-bottom: 46px;
    }

    .diff-body:nth-of-type(1) { grid-column: 2; grid-row: 1; }
    .diff-body:nth-of-type(2) { grid-column: 2; grid-row: 2; }
    .diff-body:nth-of-type(3) { grid-column: 2; grid-row: 3; }

    .diff-body .m-title {
        display: block;
        font-weight: 600;
        font-size: 1.35rem;
        color: var(--ink);
        margin-bottom: 14px;
    }

    .diff-body.mid h5 {
        font-weight: 600;
        font-size: 1.35rem;
        margin-bottom: 14px;
        text-align: left; 
        margin-left: 0px;
    }

    .diff-body.mid .mid-mobile-text {
        display: block;
    }

    .diff-body p,
    .diff-body.mid .mid-mobile-text {
        font-size: .92rem;
        line-height: 1.55;
    }
}

/* ===== AREAS ===== */
.areas {
    background: var(--bg-light);
    padding: 90px 64px
}

.areas h2 {
    font-weight: 600;
    font-size: clamp(1.8rem, 3.6vw, 2.7rem);
    margin-bottom: 60px;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto
}

.areas-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start
}

.areas-list {
    list-style: none
}

.areas-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--ink);
    cursor: pointer;
    transition: .4s
}

.areas-list li .ar {
    color: var(--ink);
    font-size: 1.3rem;
    transition: .4s
}

.areas-list li.active,
.areas-list li.active .ar,
.areas-list li:hover .ar {
    color: var(--gold);
    padding-left: 14px
}

.area-panel {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 560px;
    padding: 54px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff
}

.area-panel .pbg {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, #16243f 0%, #0c1730 70%);
    z-index: 0
}

.area-panel .pbg img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
    opacity: .5;
    -webkit-mask-image: linear-gradient(90deg, #000 30%, transparent);
    mask-image: linear-gradient(90deg, #000 30%, transparent);
    transition: opacity .35s ease
}

.area-panel .pc {
    position: relative;
    z-index: 1;
    margin-left: 20%
}

.area-panel h3 {
    font-weight: 500;
    font-size: 2.2rem;
    margin-bottom: 8px
}

.area-panel .uline {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 26px
}

.area-panel p {
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, .86)
}

.area-panel .conv {
    margin-top: 48px;
    color: var(--gold);
    font-size: .95rem;
    letter-spacing: .06em
}

@media(max-width:900px) {
    .areas-inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .area-panel {
        min-height: auto;
        padding: 44px 30px
    }

    .area-panel .pbg img {
        display: none
    }

    .area-panel .pc {
        margin-left: 0
    }
}


/* ===== PROFESSIONALS ===== */
.pros {
    background: var(--bg-light);
    padding: 90px 64px
}

.pros-head{
    display: flex;
    justify-content: space-between;
}

.pros-openmodal{
    color: var(--gold);
    margin-right: 5vw;
    margin-top: 6px;
    font-weight: 600;
}

.pros-openmodal a {
    color: inherit;
    cursor: pointer;
}

.pros h2 {
    font-weight: 600;
    font-size: clamp(1.8rem, 3.6vw, 2.7rem);
    margin-bottom: 50px;
    padding-left: 3%;
}

.pros-stage {
    padding: 0px 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px
}

.pros-arrow {
    font-size: 2.4rem;
    color: #aab0b8;
    cursor: pointer;
    user-select: none;
    transition: .3s;
    flex-shrink: 0;
    line-height: 1
}

.pros-arrow:hover {
    color: var(--ink)
}

.pros-arrow.disabled {
    opacity: .28;
    pointer-events: none
}

.pros-viewport {
    flex: 1;
    overflow: hidden
}

.pros-grid {
    display: flex;
    gap: 0;
    will-change: transform;
    transition: transform .55s cubic-bezier(.4, .0, .2, 1)
}

.pro {
    flex: 0 0 var(--pro-w, 50%);
    max-width: var(--pro-w, 50%);
    padding: 0 25px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pro .photo {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden
}

.pro .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.pro .name-row {
    display: flex;
    border-left: 3px solid var(--gold);
    padding-left: 16px;
    margin: 26px 0 18px
}

.pro .name-row div h4 {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--ink)
}

.pro .name-row div .role {
    font-weight: 600;
    color: var(--gray-text);
    font-size: 1rem;
    margin-top: 2px
}

.pro .meta {
    height: 170px;
    font-weight: 300;
    color: var(--gray-text);
    font-size: .98rem;
    line-height: 1.55;
    margin-left: 19px
}

.pro .meta a {
    color: var(--gray-text);
    text-decoration: underline
}

.pro .li {
    margin: 14px 0 0 19px;
    color: #aab0b8;
    font-size: 1.2rem
}


.pro .li img {
    width: 24px;
}

.pros-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 38px
}

.pros-dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: #c9cdd3;
    cursor: pointer;
    padding: 0;
    transition: .3s
}

.pros-dots button.on {
    background: var(--gold);
    width: 26px;
    border-radius: 5px
}

.team-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .35s ease, visibility .35s ease;
}

.team-modal.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.team-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 21, 48, .78);
    backdrop-filter: blur(10px);
}

.team-modal__panel {
    position: relative;
    width: min(980px, 100%);
    max-height: min(84vh, 820px);
    overflow: hidden;
    background: var(--bg-light);
    border: 1px solid rgba(220, 177, 67, .28);
    box-shadow: 0 28px 80px rgba(4, 19, 32, .32);
    display: flex;
    flex-direction: column;
}

.team-modal__close {
    position: absolute;
    top: 22px;
    right: 24px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(220, 177, 67, .42);
    background: transparent;
    color: var(--gold);
    font-size: 1.9rem;
    line-height: 1;
    cursor: pointer;
    transition: .25s ease;
}

.team-modal__close:hover {
    background: var(--gold);
    color: var(--navy-deep);
}

.team-modal__head {
    padding: 44px 58px 28px;
    background: linear-gradient(150deg, var(--hero-grad-1), var(--navy-deep));
    color: #fff;
}

.team-modal__head h2 {
    font-weight: 600;
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
}

.team-modal__line {
    width: 72px;
    height: 3px;
    margin-top: 18px;
    background: var(--gold);
}

.team-modal__list {
    overflow-y: auto;
    padding: 26px 58px 42px;
}

.team-modal__item {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 26px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.team-modal__item:last-child {
    border-bottom: none;
}

.team-modal__photo {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    background: #fff;
}

.team-modal__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-modal__content {
    border-left: 3px solid var(--gold);
    padding-left: 20px;
}

.team-modal__name {
    font-weight: 600;
    font-size: 1.22rem;
    color: var(--ink);
}

.team-modal__role {
    font-weight: 600;
    color: var(--gray-text);
    font-size: .98rem;
    margin-top: 2px;
}

.team-modal__meta {
    margin-top: 10px;
    font-weight: 300;
    color: var(--gray-text);
    font-size: .95rem;
    line-height: 1.55;
}

.team-modal__meta a {
    color: var(--gray-text);
    text-decoration: underline;
    overflow-wrap: break-word;
}

.team-modal__linkedin {
    display: inline-flex;
    margin-top: 12px;
}

.team-modal__linkedin img {
    width: 24px;
}


@media(max-width:760px) {
    .pro {
        padding: 10px;
    }

    .team-modal {
        padding: 18px;
    }

    .team-modal__panel {
        max-height: 88vh;
    }

    .team-modal__head {
        padding: 36px 28px 24px;
    }

    .team-modal__close {
        top: 18px;
        right: 18px;
    }

    .team-modal__list {
        padding: 14px 24px 30px;
    }

    .team-modal__item {
        grid-template-columns: 78px 1fr;
        gap: 16px;
        padding: 20px 0;
    }

    .team-modal__photo {
        width: 78px;
        height: 78px;
        border-width: 2px;
    }

    .team-modal__content {
        padding-left: 15px;
    }

    .team-modal__name {
        font-size: 1.05rem;
    }

    .team-modal__meta {
        font-size: .88rem;
    }
}

@media(max-width:900px) {
    .pros-stage {
        padding: 0px 30px;
    }

}

@media(max-width:1500px) {
    .pros-stage {
        padding: 0px 15px;
    }

}

@media (max-width: 500px) { 
   .pro .meta {
    font-size: 14px !important;
   }
}

@media (max-width: 450px) { 
   .pro .meta {
    font-size: 13px !important;
   }
}

@media (max-width: 430px) { 
   .pro .meta {
    font-size: 12px !important;
    overflow-wrap: break-word;
   }
}
/* ===== CONTACT ===== */
.contact {
    position: relative;
    padding: 110px 64px;
    overflow: hidden;
}

.contact .cbg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.contact .cbg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(10 21 48 / 30%), rgb(10 21 48 / 30%));
}

.contact-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.contact h2 {
    color: #fff;
    text-align: center;
    font-weight: 500;
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    line-height: 1.25;
    margin-bottom: 56px;
}

.form .field {
    margin-bottom: 24px;
}

.form label {
    display: block;
    color: #fff;
    font-weight: 300;
    font-size: 1rem;
    margin-bottom: 10px;
}

.form input,
.form textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 8px;
    padding: 18px 20px;
    color: #fff;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 300;
}

.form input::placeholder,
.form textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.form textarea {
    min-height: 150px;
    resize: vertical;
}

.form input:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form .send {
    display: block;
    margin: 14px auto 0;
    background: #fff;
    color: var(--navy);
    border: none;
    padding: 10px 48px;
    border-radius: 40px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: 0.4s;
}

.form .send:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

/* ===== FOOTER ===== */
footer {
    background: var(--navy-deep);
    padding: 70px 64px;
}

.foot-inner {
    /* max-width: 1180px; */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    align-items: center;
    gap: 40px;
}

.foot-meta {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 300;
    line-height: 1.7;
    font-size: 1rem;
}

.foot-meta .mail {
    margin-top: 30px;
}

.foot-li {
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.foot-li .b {
    background: #fff;
    color: var(--navy);
    border-radius: 4px;
    padding: 1px 5px;
    font-size: 0.85rem;
}

@media (max-width: 760px) {
    .foot-inner {
        grid-template-columns: 1fr;
        gap: 26px;
        text-align: left;
    }
}

/* ===== RESPONSIVE GLOBAL ===== */
@media (max-width: 1024px) {
    .hero-inner {
        padding: 170px 40px;
    }

    .stats,
    .banner,
    .diff,
    .areas,
    .pros,
    .contact {
        padding-left: 40px;
        padding-right: 40px;
    }

    footer {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 640px) {
    .hero-inner {
        padding: 170px 24px;
    }

    .stats {
        padding: 70px 24px;
    }

    .banner {
        padding: 90px 24px;
    }

    .diff {
        padding: 40px 24px 90px;
    }

    .areas {
        padding: 64px 24px;
    }

    .pros {
        padding: 64px 24px;
    }

    .contact {
        padding: 80px 24px;
    }

    footer {
        padding: 54px 24px;
    }

    .stats h2 {
        margin-bottom: 50px;
    }

    .clients {
        margin-top: 50px;
        justify-content: center;
        gap: 34px;
    }

    .clients .cl {
        font-size: 1.5rem;
    }

    .clients .cl.box {
        font-size: 1.15rem;
    }

    .diff h2 {
        margin-bottom: 50px;
    }

    .diff-circle {
        width: 54px;
        height: 54px;
        font-size: 1.4rem;
    }

    .areas h2,
    .pros h2 {
        margin-bottom: 36px;
    }

    .area-panel h3 {
        font-size: 1.8rem;
    }

    .pro .name-row div h4 {
        font-size: 1.3rem;
    }

    .hero-btn {
        padding: 18px 36px;
    }
}

/* reveal base */
.rv {
    opacity: 0;
    transform: translateY(46px);
}
