: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: 0 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: 75px;
    max-height: 75px;
    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: #000;
}

.hero-video {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;

    opacity: 0.95;
}

.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;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #000;
  overflow: hidden;

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

  transition: opacity 0.7s ease, visibility 0.7s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

/* Stars */

.star-field,
.star-field::before,
.star-field::after {
  content: "";
  position: absolute;
  inset: -50%;

  background-image:
    radial-gradient(#ffffff 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.6) 1px, transparent 1px);

  background-size: 90px 90px, 140px 140px;
  background-position: 0 0, 45px 70px;

  animation: moveStars 28s linear infinite;
}

.star-field {
  opacity: 0.45;
}

.star-field::before {
  opacity: 0.25;
  transform: scale(1.4);
  animation-duration: 42s;
}

.star-field::after {
  opacity: 0.12;
  transform: scale(2);
  animation-duration: 60s;
}

/* Loader */

.loader {
  position: relative;
  width: 86px;
  height: 86px;
}

.loader-ring {
  position: absolute;
  inset: 0;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  border-top-color: rgba(255,255,255,0.95);

  animation: spin 1.2s linear infinite;
}

.loader-ring::before {
  content: "";
  position: absolute;
  inset: 12px;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom-color: rgba(255,140,0,0.9);

  animation: spinReverse 1.8s linear infinite;
}

.loader-dot {
  position: absolute;
  left: 50%;
  top: 50%;

  width: 8px;
  height: 8px;

  transform: translate(-50%, -50%);

  border-radius: 50%;
  background: #ff8a00;

  box-shadow:
    0 0 12px rgba(255,138,0,0.9),
    0 0 28px rgba(255,138,0,0.5);

  animation: pulseDot 1.4s ease-in-out infinite;
}

/* Text */

.loader-text {
  position: absolute;
  bottom: 90px;

  color: rgba(255,255,255,0.75);

  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;

  letter-spacing: 5px;
  text-transform: uppercase;

  animation: textPulse 1.5s ease-in-out infinite;
}

/* Animations */

@keyframes moveStars {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(180px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinReverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes pulseDot {
  0%, 100% {
    opacity: 0.45;
    transform: translate(-50%, -50%) scale(0.8);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@keyframes textPulse {
  0%, 100% {
    opacity: 0.45;
  }

  50% {
    opacity: 1;
  }
}

/* SCROLL TO TOP */

#scrollTopBtn {
    position: fixed;

    right: 28px;
    bottom: 28px;

    width: 56px;
    height: 56px;

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

    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(10px);

    color: var(--yellow);

    font-size: 20px;

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

    cursor: pointer;

    z-index: 999;

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition:
        opacity .3s ease,
        transform .3s ease,
        visibility .3s ease,
        background .25s ease,
        border-color .25s ease;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

#scrollTopBtn:hover {
    background: var(--yellow);
    color: #000;

    border-color: var(--yellow);

    transform: translateY(-4px);

    box-shadow:
        0 10px 24px rgba(255, 208, 0, 0.22),
        0 0 20px rgba(255, 208, 0, 0.16);
}

@media (max-width: 767px) {
    #scrollTopBtn {
        width: 50px;
        height: 50px;

        right: 18px;
        bottom: 18px;
    }
}


/* 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;

    overflow: hidden;

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

    opacity: 0.92;

    pointer-events: none;
}

.service-video {
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0.92;

    pointer-events: none;
}

.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: #000;

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

.mission-shell::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.94) 31%,
            rgba(0, 0, 0, 0.68) 43%,
            rgba(0, 0, 0, 0.20) 63%,
            rgba(0, 0, 0, 0.36) 100%
        );
}

.mission-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;

    opacity: 0.9;
}

.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;
}

.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);
    }

}

/* =========================================================
   MODERN HOVER EFFECTS
========================================================= */

.navbar-dark .navbar-nav .nav-link {
    position: relative;

    transition:
        color .25s ease,
        transform .25s ease,
        opacity .25s ease;
}

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

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


/* BUTTONS */

.btn-yellow,
.btn-glass,
.btn-careers,
.btn-outline-yellow,
.footer-contact {
    position: relative;
    overflow: hidden;

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.btn-yellow:hover,
.btn-glass:hover,
.btn-careers:hover,
.btn-outline-yellow:hover,
.footer-contact:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 24px rgba(255, 208, 0, 0.14),
        0 0 18px rgba(255, 208, 0, 0.08);
}

.btn-yellow::before,
.btn-glass::before,
.btn-careers::before,
.btn-outline-yellow::before,
.footer-contact::before {
    content: "";

    position: absolute;
    top: 0;
    left: -130%;

    width: 70%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.16),
        transparent
    );

    transform: skewX(-24deg);

    transition: left .7s ease;
}

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


/* CARDS */

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

.service-card:hover,
.team-card:hover,
.team-stats div:hover {
    transform: translateY(-6px);

    border-color: rgba(255, 208, 0, 0.55);

    box-shadow:
        0 14px 30px rgba(0,0,0,.38),
        0 0 16px rgba(255,208,0,.08);
}


/* HOW WE WORK */

.work-step {
    position: relative;

    padding: 18px;

    border-radius: 16px;
    border: 1px solid transparent;

    background: transparent;

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;
}

.work-step:hover {
    transform: translateY(-4px);

    background:
        linear-gradient(
            180deg,
            rgba(255,208,0,.035),
            rgba(255,208,0,.015)
        );

    border-color: rgba(255,208,0,.14);

    box-shadow: none;
}

.work-step:hover .step-icon {
    border-color: rgba(255,208,0,.5);

    background:
        radial-gradient(circle at 50% 0%,
        rgba(255,208,0,.18),
        transparent 68%),
        rgba(255,255,255,.05);
}

.work-step:hover .step-top b {
    transform: translateX(2px);
}

.step-top b {
    transition: transform .25s ease;
}


/* ICONS */

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

.icon-box:hover,
.step-icon:hover,
.career-icon:hover,
.team-socials a:hover {
    transform: scale(1.05);

    box-shadow:
        0 0 14px rgba(255,208,0,.12);
}


/* TEAM SOCIAL */

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


/* CAREER ITEMS */

.career-benefit {
    transition:
        transform .25s ease,
        opacity .25s ease;
}

.career-benefit:hover {
    transform: translateY(-4px);
}


/* SCROLL BUTTON */

#scrollTopBtn {
    transition:
        opacity .3s ease,
        transform .3s ease,
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

#scrollTopBtn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 24px rgba(255,208,0,.18),
        0 0 16px rgba(255,208,0,.10);
}

/* TABLET NAV FIX */

@media (max-width: 1199px) {
    .site-nav {
        width: calc(100% - 16px);
        padding: 10px 16px;
    }

    .navbar-collapse {
        margin-top: 14px;
        padding: 18px 0 4px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

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

    .navbar-dark .navbar-nav .nav-link {
        font-size: 18px;
        padding: 9px 0;
        line-height: 1.1;
    }

    .nav-cta {
        width: 100%;
        margin: 14px 0 0;
    }
}

/* NAV FIX FOR 1200–1399px */

@media (min-width: 1200px) and (max-width: 1399px) {
    .site-nav {
        width: calc(100% - 16px);
    }

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

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

    .navbar-dark .navbar-nav .nav-link {
        font-size: 16px;
        line-height: 1;
        white-space: nowrap;
    }

    .nav-cta {
        margin-left: 18px;
        padding: 0 18px;
        font-size: 15px;
        white-space: nowrap;
    }

    .brand-text {
        font-size: 30px;
        white-space: nowrap;
    }

    .site-logo {
        width: 70px;
    }
}

/* =========================================================
   REFACTOR OVERRIDES: stable tablet layout + cleaner nav
   Keep this block at the END of the file.
========================================================= */
:root {
    --container: min(1480px, calc(100vw - 32px));
    --radius-lg: 18px;
    --nav-height: 76px;
}

.page-shell,
.footer-section {
    width: var(--container);
}

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

.navbar > .container-fluid {
    flex-wrap: nowrap;
}

.navbar-brand {
    min-width: 0;
    margin-right: clamp(18px, 3vw, 42px);
}

.brand-text,
.navbar-dark .navbar-nav .nav-link,
.nav-cta {
    white-space: nowrap;
}

.navbar-nav {
    align-items: center;
}

.hero {
    margin-top: calc(var(--nav-height) * -1 - 8px);
    padding-top: calc(var(--nav-height) + 78px);
}

.hero-title {
    font-size: clamp(64px, 7.8vw, 150px);
}

.hero-stats {
    margin-right: clamp(0px, 6vw, 115px);
}

section[id] {
    scroll-margin-top: 96px;
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    :root {
        --container: calc(100vw - 32px);
        --nav-height: 74px;
    }

    .site-nav {
        width: 100%;
        padding: 10px 16px;
    }

    .site-logo {
        width: 66px;
    }

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

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

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

    .navbar-dark .navbar-nav .nav-link {
        font-size: 15px;
        letter-spacing: .35px;
    }

    .nav-cta {
        height: 44px;
        margin-left: 16px;
        padding: 0 16px;
        font-size: 15px;
    }

    .hero {
        min-height: 650px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-stats {
        margin-top: 205px;
    }
}

@media (max-width: 1199.98px) {
    :root {
        --container: calc(100vw - 24px);
        --nav-height: 72px;
    }

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

    .site-nav {
        width: 100%;
        padding: 10px 16px;
    }

    .navbar > .container-fluid {
        flex-wrap: wrap;
    }

    .navbar-brand {
        margin-right: 0;
    }

    .site-logo {
        width: 70px;
    }

    .brand-text {
        font-size: clamp(26px, 4vw, 32px);
    }

    .navbar-collapse {
        width: 100%;
        margin-top: 14px;
        padding: 16px 0 4px;
        border-top: 1px solid rgba(255, 255, 255, .12);
    }

    .navbar-nav {
        align-items: flex-start;
        gap: 8px !important;
    }

    .navbar-dark .navbar-nav .nav-link {
        width: 100%;
        padding: 9px 0;
        font-size: 18px;
        line-height: 1.1;
    }

    .nav-cta {
        width: 100%;
        margin: 14px 0 0;
    }

    .hero {
        margin-top: -72px;
        padding: 140px 22px 125px;
    }

    .hero-stats {
        width: 100%;
        margin: 58px 0 0;
    }

    .services .container-fluid,
    .work-shell,
    .team-shell,
    .mission-shell,
    .careers-shell,
    .footer-shell {
        width: calc(100% - 24px);
    }
}

@media (max-width: 991.98px) {
    body::before,
    body::after {
        display: none;
    }

    .hero::before {
        background: linear-gradient(90deg, #000 0%, rgba(0,0,0,.88) 16%, rgba(0,0,0,.48) 52%, rgba(0,0,0,.84) 100%);
    }

    .work-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-shell {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-info {
        grid-column: 1 / -1;
    }

    .careers-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    :root {
        --container: calc(100vw - 16px);
    }

    .site-nav {
        border-radius: 14px;
    }

    .site-logo {
        width: 58px;
    }

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

    .hero {
        padding: 128px 14px 110px;
    }

    .hero-title {
        font-size: clamp(58px, 17vw, 80px);
    }

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

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

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

    .services .container-fluid,
    .work-shell,
    .team-shell,
    .mission-shell,
    .careers-shell,
    .footer-shell {
        width: 100%;
    }

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

    .service-bg-object {
        width: 100% !important;
        opacity: .24 !important;
    }

    .work-steps,
    .team-shell,
    .careers-benefits {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   PRIVACY POLICY PAGE
========================================================= */

.privacy-page {
    padding-bottom: 28px;
}

.privacy-hero {
    position: relative;
    z-index: 5;
    margin-top: 26px;
    padding: 76px 28px 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 208, 0, 0.32);
    border-radius: 20px;
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 208, 0, 0.13), transparent 34%),
        radial-gradient(circle at 15% 30%, rgba(255, 208, 0, 0.055), transparent 28%),
        linear-gradient(90deg, rgba(5, 8, 8, 0.96), rgba(3, 3, 3, 0.98));
}

.privacy-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.62), rgba(0,0,0,.92));
    pointer-events: none;
}

.privacy-hero-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
}

.privacy-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: var(--yellow);
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
}

.privacy-kicker::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 18px rgba(255, 208, 0, 0.35);
}

.privacy-title {
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(58px, 7vw, 112px);
    line-height: .86;
    font-weight: 900;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}

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

.privacy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.privacy-meta-item {
    padding: 11px 16px;
    color: #e8e8e8;
    border: 1px solid rgba(255, 208, 0, 0.32);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    font-size: 17px;
    line-height: 1;
    font-weight: 600;
}

.privacy-meta-item b {
    color: var(--yellow);
    font-weight: 800;
}

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

.privacy-shell {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 26px;
}

.privacy-toc {
    position: sticky;
    top: 22px;
    align-self: start;
    padding: 22px;
    border: 1px solid rgba(255, 208, 0, 0.28);
    border-radius: 16px;
    background:
        radial-gradient(circle at 80% 0%, rgba(255, 208, 0, 0.08), transparent 36%),
        rgba(4, 4, 4, 0.86);
}

.privacy-toc h2 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
}

.privacy-toc a {
    display: block;
    padding: 9px 0;
    color: #cfcfcf;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 600;
    text-transform: uppercase;
    transition: color .25s ease, transform .25s ease;
}

.privacy-toc a:hover {
    color: var(--yellow);
    transform: translateX(4px);
}

.privacy-card {
    padding: 28px;
    border: 1px solid rgba(255, 208, 0, 0.32);
    border-radius: 16px;
    background:
        radial-gradient(circle at 92% 4%, rgba(255, 208, 0, 0.07), transparent 32%),
        linear-gradient(180deg, rgba(7, 7, 7, 0.96), rgba(2, 2, 2, 0.98));
}

.policy-section {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 208, 0, 0.16);
}

.policy-section:first-child {
    padding-top: 0;
}

.policy-section:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

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

.policy-section p {
    margin: 0 0 14px;
    color: #d6d6d6;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 400;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-section ul {
    margin: 12px 0 16px;
    padding: 0;
    list-style: none;
}

.policy-section li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 28px;
    color: #d6d6d6;
    font-size: 17px;
    line-height: 1.28;
}

.policy-section 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: 991px) {
    .privacy-hero {
        margin-top: 18px;
        padding: 56px 22px 30px;
    }

    .privacy-shell {
        grid-template-columns: 1fr;
    }

    .privacy-toc {
        position: relative;
        top: 0;
    }
}

@media (max-width: 575px) {
    .privacy-hero {
        padding: 42px 18px 26px;
    }

    .privacy-title {
        font-size: 56px;
    }

    .privacy-card,
    .privacy-toc {
        padding: 20px;
    }

    .policy-section h2 {
        font-size: 28px;
    }

    .policy-section p,
    .policy-section li {
        font-size: 16px;
    }
}
