:root {
    --yellow: #ffd000;
    --yellow-soft: rgba(255, 208, 0, 0.35);
    --bg: #000000;
    --card: #050505;
    --text: #ffffff;
    --muted: #d8d8d8;
    --border: rgba(255, 208, 0, 0.35);
}

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

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    min-height: 100vh;

    background:
        radial-gradient(circle at 50% 0%, rgba(255, 208, 0, 0.07), transparent 34%),
        radial-gradient(circle at 8% 42%, rgba(255, 208, 0, 0.045), transparent 26%),
        linear-gradient(180deg, #080808 0%, #000 38%, #050505 100%);

    color: var(--text);
    font-family: "Saira Condensed", Arial, sans-serif;
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    width: calc((100vw - 1480px) / 2 + 230px);
    z-index: 1;
    pointer-events: none;
}

body::before {
    left: 0;
    background: linear-gradient(
        90deg,
        #000 0%,
        rgba(0, 0, 0, 0.98) 42%,
        rgba(0, 0, 0, 0.72) 68%,
        transparent 100%
    );
}

body::after {
    right: 0;
    background: linear-gradient(
        270deg,
        #000 0%,
        rgba(0, 0, 0, 0.98) 42%,
        rgba(0, 0, 0, 0.72) 68%,
        transparent 100%
    );
}

a {
    text-decoration: none;
}

.page-shell {
    width: min(1480px, calc(100% - 32px));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


/* NAV */

.site-nav {
    width: calc(100% - 56px);
    margin: 4px auto 0;

    position: relative;
    z-index: 30;

    min-height: 76px;
    padding: 12px 26px;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;

    background: rgba(0, 0, 0, 0.46);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 14px 42px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.navbar-brand {
    margin-right: 42px;
}

.navbar-collapse {
    padding-left: 32px;
    padding-right: 6px;
}

.navbar-nav {
    gap: 44px !important;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;

    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.6px;

    padding: 0;

    text-transform: uppercase;

    transition: 0.25s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--yellow);
}

.nav-cta {
    height: 50px;

    padding: 0 28px;

    margin-left: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 17px;
    font-weight: 800;

    border-radius: 12px;
}

.site-logo {
    width: 92px;
    max-height: 42px;
    object-fit: contain;
}

.brand-text {
    color: #fff;

    font-size: 38px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.brand-text b {
    color: var(--yellow);
    font-weight: 800;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;

    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;

    padding: 8px 0;

    text-transform: uppercase;
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--yellow);
}

.nav-cta {
    height: 48px;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: 800;

    border-radius: 10px;
}

.btn-outline-yellow {
    color: var(--yellow);
    border: 2px solid var(--yellow);
}

.btn-outline-yellow:hover {
    color: #000;
    background: var(--yellow);
}


/* HERO */

.hero {
    position: relative;

    min-height: 690px;
    margin-top: -84px;

    padding: 155px 28px 65px;

    overflow: hidden;

    background-image: url("../img/bg.jpg");
    background-size: auto 100%;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #000;
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            #000 0%,
            rgba(0, 0, 0, 0.98) 5%,
            rgba(0, 0, 0, 0.72) 18%,
            rgba(0, 0, 0, 0.20) 42%,
            rgba(0, 0, 0, 0.08) 62%,
            rgba(0, 0, 0, 0.58) 84%,
            rgba(0, 0, 0, 0.96) 95%,
            #000 100%
        );

    pointer-events: none;
}

.hero::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 240px;
    z-index: 1;

    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.55) 52%,
        #000 100%
    );

    pointer-events: none;
}

.hero .container-fluid,
.hero .row {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 520px;
}

.badge-line {
    display: inline-block;

    margin-bottom: 26px;

    color: var(--yellow);

    font-size: 24px;
    line-height: 1;
    font-weight: 800;
}

.hero-title {
    margin-bottom: 32px;

    color: #fff;

    font-size: clamp(88px, 8vw, 150px);
    line-height: 0.86;
    font-weight: 900;
    letter-spacing: -2px;

    text-transform: uppercase;
}

.hero-title span {
    display: block;
    color: var(--yellow);
}

.hero-text {
    max-width: 430px;

    color: var(--muted);

    font-size: 20px;
    line-height: 1.45;
    font-weight: 500;
}

.btn-yellow,
.btn-glass {
    min-width: 210px;
    height: 58px;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    font-size: 21px;
    line-height: 1;
    font-weight: 800;

    text-transform: uppercase;
}

.btn-yellow {
    color: #000;
    background: var(--yellow);
    border: 1px solid var(--yellow);
}

.btn-yellow:hover {
    color: #000;
    background: #ffe45c;
}

.btn-glass {
    color: #fff;

    background: rgba(0, 0, 0, 0.5);

    border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-glass:hover {
    color: var(--yellow);
    border-color: var(--yellow);
}


/* HERO STATS */

.hero-stats {
    position: relative;

    width: max-content;

    margin-left: auto;
    margin-right: 115px;
    margin-top: 245px;

    padding-left: 44px;
}

.hero-stats::before {
    content: "";

    position: absolute;

    left: 0;
    top: 4px;

    width: 2px;
    height: 210px;

    background: var(--yellow);
}

.hero-stats::after {
    content: "";

    position: absolute;

    left: -5px;
    top: 4px;

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: var(--yellow);

    box-shadow:
        0 72px 0 var(--yellow),
        0 144px 0 var(--yellow);
}

.stat-item {
    margin-bottom: 26px;
}

.stat-item strong {
    display: block;

    color: var(--yellow);

    font-size: 56px;
    line-height: 1;
    font-weight: 900;

    text-transform: uppercase;
}

.stat-item span {
    display: block;

    color: #fff;

    font-size: 24px;
    line-height: 1.05;
    font-weight: 500;

    text-transform: uppercase;
}


/* SERVICES */

.services {
    position: relative;
    z-index: 5;

    margin-top: -68px;
    padding: 0 0 26px;
}

.services .container-fluid {
    width: calc(100% - 56px);
    margin: 0 auto;
}

.service-card {
    position: relative;

    min-height: 330px;

    overflow: hidden;

    border: 1px solid rgba(255, 208, 0, 0.35);
    border-radius: 20px;

    background:
        radial-gradient(circle at 80% 50%, rgba(255, 208, 0, 0.12), transparent 36%),
        linear-gradient(90deg, #050505 0%, #020202 48%, #070500 100%);
}

.service-card::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.98) 0%,
            rgba(0, 0, 0, 0.88) 34%,
            rgba(0, 0, 0, 0.54) 58%,
            rgba(0, 0, 0, 0.18) 100%
        );

    pointer-events: none;
}

.service-card::after {
    display: none;
}

.service-bg-object {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 0;

    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;

    opacity: 0.92;

    pointer-events: none;
}

.media-card .service-bg-object {
    background-image: url("../img/media-buying.jpg");
}

.app-card .service-bg-object {
    background-image: url("../img/app-growth.jpg");
}

.service-content {
    position: relative;
    z-index: 3;

    min-width: 360px;

    padding: 34px;
}

.icon-box {
    width: 64px;
    height: 64px;

    margin-bottom: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--yellow);

    font-size: 30px;

    border: 1px solid rgba(255, 208, 0, 0.35);
    border-radius: 14px;

    background: rgba(255, 208, 0, 0.08);
}

.service-card h2 {
    margin-bottom: 20px;

    color: #fff;

    font-size: 48px;
    line-height: 1;
    font-weight: 800;

    text-transform: uppercase;
}

.service-card p {
    max-width: 400px;

    margin-bottom: 22px;

    color: #e0e0e0;

    font-size: 17px;
    line-height: 1.35;
    font-weight: 500;
}

.service-card ul {
    list-style: none;

    padding: 0;
    margin: 0;
}

.service-card li {
    position: relative;

    margin-bottom: 11px;
    padding-left: 28px;

    color: #e0e0e0;

    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
}

.service-card li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 1px;

    width: 17px;
    height: 17px;

    border: 1px solid var(--yellow);
    border-radius: 50%;

    color: var(--yellow);

    font-size: 11px;
    line-height: 15px;
    text-align: center;
}

@media (max-width: 1199px) {
    .services .container-fluid {
        width: calc(100% - 40px);
    }

    .service-content {
        width: 58%;
        min-width: 340px;
    }

    .service-bg-object {
        width: 62%;
    }
}

@media (max-width: 991px) {
    .services {
        margin-top: -76px;
    }

    .services .container-fluid {
        width: calc(100% - 20px);
    }

    .service-card {
        min-height: 320px;
    }

    .service-content {
        width: 62%;
        min-width: 0;
    }

    .service-bg-object {
        width: 68%;
        opacity: 0.55;
    }
}

@media (max-width: 767px) {
    .services .container-fluid {
        width: 100%;
    }

    .service-content {
        width: 100%;
        padding: 26px;
    }

    .service-bg-object {
        width: 100%;
        opacity: 0.25;
    }

    .service-card::before {
        background: rgba(0, 0, 0, 0.84);
    }

    .service-card h2 {
        font-size: 40px;
    }

    .service-card p,
    .service-card li {
        font-size: 15px;
    }
}


/* HOW WE WORK */

.work-section {
    position: relative;
    z-index: 5;

    padding: 0 0 26px;
}

.work-shell {
    width: calc(100% - 56px);
    margin: 0 auto;

    padding: 20px 24px 24px;

    border: 1px solid rgba(255, 208, 0, 0.32);
    border-radius: 16px;

    background:
        radial-gradient(circle at 80% 20%, rgba(255, 208, 0, 0.08), transparent 32%),
        linear-gradient(90deg, rgba(5, 8, 8, 0.96), rgba(4, 4, 4, 0.98));
}

.work-head h2 {
    margin: 0 0 4px;

    color: #fff;

    font-size: 34px;
    line-height: 1;
    font-weight: 800;

    text-transform: uppercase;
}

.work-head p {
    margin: 0 0 18px;

    color: #cfcfcf;

    font-size: 17px;
    line-height: 1.2;
    font-weight: 400;
}

.work-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.work-step {
    min-width: 0;
}

.step-top {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 12px;
}

.step-top .dot {
    width: 7px;
    height: 7px;

    flex: 0 0 auto;

    border-radius: 50%;
    background: var(--yellow);
}

.step-top b {
    flex: 0 0 auto;

    color: var(--yellow);

    font-size: 30px;
    line-height: 1;
    font-weight: 900;
}

.step-top .line {
    height: 1px;
    flex: 1;

    background-image: linear-gradient(
        90deg,
        rgba(255, 208, 0, 0.75) 0 35%,
        transparent 35% 100%
    );
    background-size: 8px 1px;
    background-repeat: repeat-x;
}

.step-top i {
    color: #fff;
    opacity: 0.75;

    font-size: 12px;
}

.step-icon {
    width: 58px;
    height: 58px;

    margin-bottom: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #e8e8e8;

    font-size: 24px;

    border: 1px solid rgba(255, 208, 0, 0.3);
    border-radius: 14px;

    background:
        radial-gradient(circle at 50% 0%, rgba(255, 208, 0, 0.16), transparent 65%),
        rgba(255, 255, 255, 0.04);
}

.work-step h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 22px;
    line-height: 1.05;
    font-weight: 800;

    text-transform: uppercase;
}

.work-step p {
    margin: 0;

    max-width: 160px;

    color: #c8c8c8;

    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
}

@media (max-width: 1199px) {
    .work-shell {
        width: calc(100% - 40px);
    }

    .work-steps {
        gap: 22px;
    }

    .step-top b {
        font-size: 26px;
    }
}

@media (max-width: 991px) {
    .work-shell {
        width: calc(100% - 20px);
    }

    .work-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 575px) {
    .work-shell {
        width: 100%;
        padding: 22px;
    }

    .work-steps {
        grid-template-columns: 1fr;
    }

    .work-step p {
        max-width: 100%;
    }
}

/* TEAM */

.team-section {
    position: relative;
    z-index: 5;
    padding: 0 0 26px;
}

.team-shell {
    width: calc(100% - 56px);
    margin: 0 auto;
    padding: 12px 18px;

    display: grid;
    grid-template-columns: 280px repeat(5, minmax(0, 1fr));
    gap: 14px;

    border: 1px solid rgba(255, 208, 0, 0.32);
    border-radius: 16px;

    background:
        radial-gradient(circle at 82% 8%, rgba(255, 208, 0, 0.08), transparent 34%),
        linear-gradient(90deg, rgba(5, 8, 8, 0.96), rgba(3, 3, 3, 0.98));
}

.team-info {
    padding: 8px 0;
}

.team-info h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
}

.team-info p {
    max-width: 240px;
    margin: 0 0 18px;
    color: #cfcfcf;
    font-size: 16px;
    line-height: 1.25;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 250px;
}

.team-stats div {
    min-height: 76px;
    padding: 12px 14px;

    border: 1px solid rgba(255, 208, 0, 0.45);
    border-radius: 10px;

    background: rgba(255, 208, 0, 0.04);
}

.team-stats strong {
    display: block;
    color: var(--yellow);
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
}

.team-stats span {
    display: block;
    margin-top: 5px;

    color: #fff;
    font-size: 11px;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
}

.team-card {
    position: relative;
    min-height: 292px;
    overflow: hidden;

    border: 1px solid rgba(255, 208, 0, 0.35);
    border-radius: 12px;

    background:
        radial-gradient(circle at 50% 10%, rgba(255, 208, 0, 0.12), transparent 34%),
        #050505;
}

.team-card img {
    width: 100%;
    height: 205px;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.team-card-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 42px 16px 14px;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.9) 38%,
            #050505 100%
        );
}

.team-card h3 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
}

.team-card p {
    margin: 5px 0 14px;
    color: var(--yellow);
    font-size: 13px;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
}

.team-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-socials a {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    background: rgba(255, 255, 255, 0.08);

    border-radius: 50%;
    font-size: 14px;
    text-decoration: none;

    transition: 0.25s ease;
}

.team-socials a:hover {
    color: #000;
    background: var(--yellow);
}

/* 5 cards fit better on medium desktops */
@media (max-width: 1399px) {
    .team-shell {
        grid-template-columns: 250px repeat(5, minmax(0, 1fr));
        gap: 12px;
    }

    .team-info h2 {
        font-size: 30px;
    }

    .team-info p {
        font-size: 14px;
    }

    .team-card h3 {
        font-size: 21px;
    }

    .team-card p {
        font-size: 12px;
    }
}

/* Tablet */
@media (max-width: 1199px) {
    .team-shell {
        width: calc(100% - 40px);
        grid-template-columns: repeat(3, 1fr);
    }

    .team-info {
        grid-column: span 3;
    }

    .team-info p {
        max-width: 520px;
    }

    .team-stats {
        max-width: 340px;
    }

    .team-card {
        min-height: 330px;
    }

    .team-card img {
        height: 250px;
    }
}

/* Small tablet */
@media (max-width: 900px) {
    .team-shell {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-info {
        grid-column: span 2;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .team-shell {
        width: calc(100% - 20px);
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .team-info {
        grid-column: auto;
    }

    .team-info p {
        max-width: 100%;
    }

    .team-stats {
        max-width: 100%;
    }

    .team-card {
        min-height: 340px;
    }

    .team-card img {
        height: 260px;
    }
}

/* MISSION */

.mission-section {
    position: relative;
    z-index: 5;

    padding: 0 0 26px;
}

.mission-shell {
    position: relative;

    width: calc(100% - 56px);
    min-height: 128px;

    margin: 0 auto;

    overflow: hidden;

    display: flex;
    align-items: center;

    border: 1px solid rgba(255, 208, 0, 0.32);
    border-radius: 16px;

    background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.98) 0%,
            rgba(0, 0, 0, 0.94) 31%,
            rgba(0, 0, 0, 0.68) 43%,
            rgba(0, 0, 0, 0.20) 63%,
            rgba(0, 0, 0, 0.36) 100%
        ),
        url("../img/orbit-system.png");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #000;
}

.mission-content {
    position: relative;
    z-index: 2;

    width: 44%;
    max-width: 600px;

    padding: 20px 24px;
}

.mission-content h2 {
    margin: 0 0 10px;

    color: #fff;

    font-size: 34px;
    line-height: 1;
    font-weight: 800;

    text-transform: uppercase;
}

.mission-content p {
    max-width: 540px;

    margin: 0 0 10px;

    color: #d2d2d2;

    font-size: 17px;
    line-height: 1.2;
    font-weight: 400;
}

.mission-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .mission-shell {
        width: calc(100% - 40px);
    }

    .mission-content {
        width: 52%;
    }
}

@media (max-width: 767px) {
    .mission-shell {
        width: calc(100% - 20px);
        min-height: 210px;

        align-items: flex-start;

        background-position: center bottom;
    }

    .mission-content {
        width: 100%;
        padding: 22px;
    }

    .mission-content h2 {
        font-size: 28px;
    }

    .mission-content p {
        font-size: 15px;
    }
}

/* CAREERS */

.careers-section {
    position: relative;
    z-index: 5;
}

.careers-shell {
    width: calc(100% - 56px);
    margin: 0 auto;

    min-height: 120px;

    padding: 18px 28px;

    display: grid;
    grid-template-columns: 1.35fr 2fr 230px;
    align-items: center;
    gap: 34px;

    border: 1px solid rgba(255, 208, 0, 0.32);
    border-radius: 16px;

    background:
        radial-gradient(circle at 80% 30%, rgba(255, 208, 0, 0.08), transparent 34%),
        linear-gradient(90deg, rgba(5, 8, 8, 0.96), rgba(3, 3, 3, 0.98));
}

.careers-content h2 {
    margin: 0 0 8px;

    color: #fff;

    font-size: 34px;
    line-height: 1;
    font-weight: 800;

    text-transform: uppercase;
}

.careers-content p {
    margin: 0;

    max-width: 420px;

    color: #d0d0d0;

    font-size: 16px;
    line-height: 1.15;
}

.careers-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.career-benefit {
    display: flex;
    align-items: center;
    gap: 16px;
}

.career-icon {
    width: 58px;
    height: 58px;

    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--yellow);

    font-size: 28px;

    border: 1px solid rgba(255, 208, 0, 0.35);
    border-radius: 14px;

    background: rgba(255, 208, 0, 0.07);
}

.career-benefit span {
    color: #d8d8d8;

    font-size: 17px;
    line-height: 1.15;
    font-weight: 500;
}

.btn-careers {
    height: 58px;

    padding: 0 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;

    color: var(--yellow);

    border: 2px solid var(--yellow);
    border-radius: 12px;

    font-size: 18px;
    font-weight: 800;

    text-transform: uppercase;

    transition: 0.25s ease;
}

.btn-careers:hover {
    color: #000;
    background: var(--yellow);
}

@media (max-width: 1199px) {
    .careers-shell {
        width: calc(100% - 40px);
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .careers-benefits {
        grid-template-columns: repeat(3, 1fr);
    }

    .btn-careers {
        width: fit-content;
    }
}

@media (max-width: 767px) {
    .careers-shell {
        width: calc(100% - 20px);

        padding: 22px;

        grid-template-columns: 1fr;
    }

    .careers-content h2 {
        font-size: 28px;
    }

    .careers-benefits {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .btn-careers {
        width: 100%;
    }
}

/* FOOTER */

.footer-section {
    position: relative;
    z-index: 5;

    width: min(1480px, calc(100% - 32px));
    margin: 0 auto;

    padding: 18px 0 10px;

    background: transparent;
}

.footer-shell {
    width: calc(100% - 56px);
    margin: 0 auto;

    min-height: 88px;

    padding: 0 0;

    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 32px;

    background: transparent;
    border: none;
    border-radius: 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand img {
    width: 46px;
    height: auto;
    object-fit: contain;
    opacity: 0.92;
}

.footer-brand span {
    color: #fff;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
}

.footer-brand span b {
    color: var(--yellow);
    font-weight: 800;
}

.footer-copy {
    text-align: center;
    color: #8f8f8f;
    font-size: 15px;
    line-height: 1.1;
}

.footer-policy {
    color: #bdbdbd;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
}

.footer-policy:hover {
    color: var(--yellow);
}

.footer-contact {
    height: 48px;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    color: #fff;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.02);

    font-size: 17px;
    font-weight: 700;

    text-transform: uppercase;
}

.footer-contact:hover {
    color: var(--yellow);
    border-color: var(--yellow);
}

@media (max-width: 1400px) {
    .footer-section {
        width: min(1380px, calc(100% - 64px));
    }
}

@media (max-width: 991px) {
    .footer-section {
        width: calc(100% - 24px);
    }

    .footer-shell {
        width: calc(100% - 20px);
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 18px;
        padding: 22px 0;
    }

    .footer-copy {
        order: 4;
    }
}

@media (max-width: 767px) {
    .footer-brand span {
        font-size: 24px;
    }

    .footer-contact {
        width: 100%;
    }
}


/* RESPONSIVE */

@media (max-width: 1399px) {

    body::before,
    body::after {
        width: 170px;
    }

    .hero {
        background-size: auto 96%;
    }

    .hero-stats {
        margin-right: 60px;
    }

    .service-content {
        min-width: 390px;
    }

}

@media (max-width: 1199px) {

    body::before,
    body::after {
        width: 120px;
    }

    .brand-text {
        font-size: 32px;
    }

    .site-logo {
        width: 78px;
    }

    .navbar-collapse {
        padding-top: 18px;
    }

    .nav-cta {
        width: fit-content;
        margin-top: 12px;
    }

    .hero {
        background-size: auto 88%;
        background-position: center top;
    }

    .hero-stats {
        margin-right: 10px;
    }

    .service-content {
        width: 58%;
        min-width: 360px;
    }

    .service-bg-object {
        width: 52%;
    }

}

@media (max-width: 991px) {

    body::before,
    body::after {
        width: 70px;
    }

    .page-shell {
        width: min(100% - 20px, 100%);
        margin-top: 10px;
    }

    .hero {
        min-height: auto;
        margin-top: -72px;

        padding: 145px 20px 145px;

        background-size: cover;
        background-position: center top;
    }

    .hero::before {
        background:
            linear-gradient(
                90deg,
                #000 0%,
                rgba(0, 0, 0, 0.88) 10%,
                rgba(0, 0, 0, 0.52) 32%,
                rgba(0, 0, 0, 0.22) 58%,
                rgba(0, 0, 0, 0.82) 100%
            );
    }

    .hero-content {
        max-width: 570px;
    }

    .hero-stats {
        margin: 60px 0 0;
    }

    .services {
        margin-top: -76px;
    }

    .service-card {
        min-height: 320px;
    }

    .service-content {
        width: 62%;
        min-width: 0;
    }

    .media-card .service-bg-object {
        width: 62%;
        opacity: 0.55;
    }

    .app-card .service-bg-object {
        width: 58%;
        opacity: 0.5;
    }

}

@media (max-width: 767px) {

    body::before,
    body::after {
        display: none;
    }

    .site-nav {
        padding: 10px 14px;
    }

    .site-logo {
        width: 64px;
    }

    .brand-text {
        font-size: 28px;
    }

    .hero {
        padding-left: 14px;
        padding-right: 14px;
    }

    .badge-line {
        font-size: 20px;
    }

    .hero-title {
        font-size: 80px;
    }

    .hero-text {
        font-size: 17px;
    }

    .btn-yellow,
    .btn-glass {
        width: 100%;
    }

    .hero-stats {
        padding-left: 30px;
    }

    .stat-item strong {
        font-size: 44px;
    }

    .stat-item span {
        font-size: 20px;
    }

    .service-content {
        width: 100%;
        padding: 26px;
    }

    .service-bg-object {
        width: 78% !important;
        opacity: 0.28 !important;
    }

    .service-card::before {
        background: rgba(0, 0, 0, 0.82);
    }

    .service-card h2 {
        font-size: 40px;
    }

    .section-card {
        padding: 24px;
    }

}

@media (max-width: 575px) {

    .brand-text {
        font-size: 24px;
    }

    .hero-title {
        font-size: 70px;
    }

    .services {
        margin-top: -58px;
    }

    .service-card h2 {
        font-size: 36px;
    }

    .service-card p,
    .service-card li {
        font-size: 15px;
    }

}

@media (max-width: 1199px) {

    .navbar-collapse {
        padding-left: 0;
        padding-right: 0;
    }

    .navbar-nav {
        gap: 18px !important;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 14px;
    }

}

@media (max-width: 1400px) {

    .page-shell {
        width: min(1380px, calc(100% - 64px));
    }

}

@media (max-width: 991px) {

    .page-shell {
        width: calc(100% - 24px);
    }

    .site-nav {
        width: calc(100% - 16px);
    }

}

/* =========================
   CLEAN HOVER EFFECTS
========================= */

.navbar-dark .navbar-nav .nav-link{
    position: relative;
    transition: color .25s ease, transform .25s ease;
}

.navbar-dark .navbar-nav .nav-link:hover{
    color: var(--yellow);
    transform: translateY(-2px);
    text-decoration: none;
}

.navbar-dark .navbar-nav .nav-link::after{
    display:none !important;
}

.btn-yellow,
.btn-glass,
.btn-careers,
.btn-outline-yellow,
.footer-contact{
    position: relative;
    overflow: hidden;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease,
        border-color .25s ease;
}

.btn-yellow:hover,
.btn-glass:hover,
.btn-careers:hover,
.btn-outline-yellow:hover,
.footer-contact:hover{
    transform: translateY(-3px);
    box-shadow:
        0 12px 28px rgba(255,208,0,.18),
        0 0 24px rgba(255,208,0,.12);
}

.btn-yellow::before,
.btn-glass::before,
.btn-careers::before,
.btn-outline-yellow::before,
.footer-contact::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:70%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.18),
        transparent
    );
    transform: skewX(-22deg);
    transition:left .65s ease;
}

.btn-yellow:hover::before,
.btn-glass:hover::before,
.btn-careers:hover::before,
.btn-outline-yellow:hover::before,
.footer-contact:hover::before{
    left:140%;
}

.service-card,
.team-card,
.work-step,
.career-benefit,
.team-stats div{
    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease;
}

.service-card:hover,
.team-card:hover,
.work-step:hover,
.team-stats div:hover{
    transform: translateY(-8px);
    border-color: rgba(255,208,0,.75);
    box-shadow:
        0 16px 34px rgba(0,0,0,.45),
        0 0 22px rgba(255,208,0,.14);
}

.icon-box,
.step-icon,
.career-icon,
.team-socials a{
    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        box-shadow .25s ease;
}

.icon-box:hover,
.step-icon:hover,
.career-icon:hover,
.team-socials a:hover{
    transform: scale(1.08);
    box-shadow: 0 0 18px rgba(255,208,0,.18);
}

