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

body {
    background-color: #000;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    margin: 0;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== COMMON: Section titles — белый текст + горизонтальная линия от края экрана ===== */
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    color: #fff;
    font-size: clamp(22px, 1.8vw, 35px);
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 70px;
    position: relative;
}

.title-line {
    position: absolute;
    right: calc(100% + 16px);
    top: 50%;
    transform: translateY(-50%);
    width: 100vw;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.4) 100%);
    flex-shrink: 0;
    border-radius: 0;
}

/* ===== COMMON: Горизонтальный разделитель перед секцией ===== */
.section-divider {
    width: 77%;
    height: 1px;
    background: linear-gradient(90deg, #c8a84e 0%, rgba(200,168,78,0.2) 100%);
    margin-bottom: 25px;
}

/* ===== COMMON: Кнопка с обводкой "Добавить резюме" ===== */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    color: #999;
    font-size: clamp(12px, 1.1vw, 16px);
    font-weight: 500;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: background 0.3s, border-color 0.3s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline-plus {
    font-size: 1.2em;
    color: #777;
}

/* ===== COMMON: Золотая кнопка "Написать нам" ===== */
.btn-gold {
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(200, 168, 78, 0.6)) drop-shadow(0 0 30px rgba(200, 168, 78, 0.3));
}

.btn-gold img {
    display: block;
    height: clamp(48px, 5vw, 68px);
    width: auto;
    background: transparent;
}

.btn-gold span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1a1a1a;
    font-size: clamp(12px, 1.2vw, 18px);
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    width: 100%;
}

.hero-bg {
    display: block;
    width: 100%;
    height: auto;
}

.hero-content {
    position: absolute;
    top: 20%;
    left: 45%;
    width: 46%;
    max-width: 900px;
    z-index: 2;
}

.hero-logo {
    width: 45%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(200, 124, 78, 0.7)) drop-shadow(0 0 50px rgba(200, 124, 78, 0.4)) drop-shadow(0 0 80px rgba(234, 199, 99, 0.2));
}

.hero-text {
    color: #fff;
    font-size: clamp(14px, 1.5vw, 29px);
    line-height: 1.45;
    margin-top: 30px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 35px;
}

.hero-buttons .btn-gold img {
    height: clamp(50px, 5.5vw, 75px);
}

.hero-buttons .btn-outline {
    padding: 20px 36px;
}

.hero-buttons .btn-gold span {
    color: #fff;
    font-size: clamp(10px, 1vw, 16px);
}

.hero-subtext {
    color: #fff;
    font-size: clamp(10px, 1.1vw, 21px);
    line-height: 1.35;
    margin-top: 30px;
}

/* ===== ADVANTAGES ===== */
.advantages {
    padding: 50px 8.6% 30px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 34px;
}

.advantage-card {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.advantage-card img {
    width: 100%;
    max-width: 380px;
    height: clamp(150px, 15vw, 280px);
    object-fit: contain;
    margin-bottom: -15px;
    padding-right: 35px;
}

.advantage-card h3 {
    color: #fff;
    font-size: clamp(14px, 1.2vw, 23px);
    font-weight: 600;
    margin-bottom: 8px;
    padding-left: 29px;
}

.advantage-card p {
    color: #c8c2c2;
    font-size: clamp(12px, 1vw, 19px);
    line-height: 1.55;
    padding-left: 29px;
}

/* ===== QUOTE ===== */
.quote-section {
    padding: 0 8.6% 40px;
}

.quote-box {
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.37);
    border-radius: 44px;
    overflow: hidden;
    min-height: clamp(250px, 21vw, 408px);
}

.quote-slider {
    position: relative;
    width: 100%;
    height: clamp(250px, 21vw, 408px);
}

.quote-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 35px 40px;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.quote-slide:first-child .quote-text {
    left: 7%;
    position: relative;
}

.quote-text--right {
    text-align: right;
    margin-left: auto;
    right: 11%;
    position: relative;
    padding: 0;
}

.quote-slide.active {
    opacity: 1;
    pointer-events: auto;
    padding: 0;
}

.quote-slide:last-child {
    padding: 39px;
}

.quote-image {
    position: absolute;
    top: 64%;
    transform: translateY(-50%);
    height: 180%;
    width: auto;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
    right: -140px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    margin: 0;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== COMMON: Section titles — белый текст + горизонтальная линия от края экрана ===== */
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    color: #fff;
    font-size: clamp(22px, 1.8vw, 35px);
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 70px;
    position: relative;
}

.title-line {
    position: absolute;
    right: calc(100% + 16px);
    top: 50%;
    transform: translateY(-50%);
    width: 100vw;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.4) 100%);
    flex-shrink: 0;
    border-radius: 0;
}

/* ===== COMMON: Горизонтальный разделитель перед секцией ===== */
.section-divider {
    width: 77%;
    height: 1px;
    background: linear-gradient(90deg, #c8a84e 0%, rgba(200,168,78,0.2) 100%);
    margin-bottom: 25px;
}

/* ===== COMMON: Кнопка с обводкой "Добавить резюме" ===== */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    color: #999;
    font-size: clamp(12px, 1.1vw, 16px);
    font-weight: 500;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: background 0.3s, border-color 0.3s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline-plus {
    font-size: 1.2em;
    color: #777;
}

/* ===== COMMON: Золотая кнопка "Написать нам" ===== */
.btn-gold {
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(200, 168, 78, 0.6)) drop-shadow(0 0 30px rgba(200, 168, 78, 0.3));
}

.btn-gold img {
    display: block;
    height: clamp(48px, 5vw, 68px);
    width: auto;
    background: transparent;
}

.btn-gold span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1a1a1a;
    font-size: clamp(12px, 1.2vw, 18px);
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    width: 100%;
}

.hero-bg {
    display: block;
    width: 100%;
    height: auto;
}

.hero-content {
    position: absolute;
    top: 20%;
    left: 45%;
    width: 46%;
    max-width: 900px;
    z-index: 2;
}

.hero-logo {
    width: 45%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(200, 124, 78, 0.7)) drop-shadow(0 0 50px rgba(200, 124, 78, 0.4)) drop-shadow(0 0 80px rgba(234, 199, 99, 0.2));
}

.hero-text {
    color: #fff;
    font-size: clamp(14px, 1.5vw, 29px);
    line-height: 1.45;
    margin-top: 30px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 35px;
}

.hero-buttons .btn-gold img {
    height: clamp(50px, 5.5vw, 75px);
}

.hero-buttons .btn-outline {
    padding: 20px 36px;
}

.hero-buttons .btn-gold span {
    color: #fff;
    font-size: clamp(10px, 1vw, 16px);
}

.hero-subtext {
    color: #fff;
    font-size: clamp(10px, 1.1vw, 21px);
    line-height: 1.35;
    margin-top: 30px;
}

/* ===== ADVANTAGES ===== */
.advantages {
    padding: 50px 8.6% 30px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 34px;
}

.advantage-card {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.advantage-card img {
    width: 100%;
    max-width: 380px;
    height: clamp(150px, 15vw, 280px);
    object-fit: contain;
    margin-bottom: -15px;
    padding-right: 35px;
}

.advantage-card h3 {
    color: #fff;
    font-size: clamp(14px, 1.2vw, 23px);
    font-weight: 600;
    margin-bottom: 8px;
    padding-left: 29px;
}

.advantage-card p {
    color: #c8c2c2;
    font-size: clamp(12px, 1vw, 19px);
    line-height: 1.55;
    padding-left: 29px;
}

/* ===== QUOTE ===== */
.quote-section {
    padding: 0 8.6% 40px;
}

.quote-box {
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.37);
    border-radius: 44px;
    overflow: hidden;
    min-height: clamp(250px, 21vw, 408px);
}

.quote-slider {
    position: relative;
    width: 100%;
    height: clamp(250px, 21vw, 408px);
}

.quote-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 35px 40px;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.quote-slide:first-child .quote-text {
    left: 7%;
    position: relative;
}

.quote-text--right {
    text-align: right;
    margin-left: auto;
    right: 11%;
    position: relative;
}

.quote-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.quote-image {
    position: absolute;
    top: 64%;
    transform: translateY(-50%);
    height: 180%;
    width: auto;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
    right: -140px;
}

.quote-image--right {
    right: 0px;
    left: auto;
    top: 50%;
    height: 100%;
    margin-left: 4%;
}

.quote-image--left {
    left: -60px;
    right: auto;
    top: 50%;
    height: 100%;
    margin-left: 4%;
}

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

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

.quote-dots span.active {
    background: rgba(255, 255, 255, 0.7);
}

.quote-text {
    color: #fff;
    font-size: clamp(22px, 2.76vw, 40px);
    line-height: 1.3;
    font-weight: 400;
    position: relative;
    z-index: 2;
    max-width: 55%;
}

.quote-text strong {
    color: #fff;
    font-weight: 700;
}

/* ===== REVIEWS ===== */
.reviews {
    padding: 40px 8.6% 40px;
}

.review-card {
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
}

.review-content {
    display: flex;
    gap: 30px;
}

.review-left {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    position: relative;
}

.review-left img {
    -webkit-mask-image: linear-gradient(to bottom, #000 80%, transparent 100%), linear-gradient(to right, transparent 0%, #000 15%);
    -webkit-mask-composite: destination-in;
    mask-image: linear-gradient(to bottom, #000 80%, transparent 100%), linear-gradient(to right, transparent 0%, #000 15%);
    mask-composite: intersect;
}

.review-left img {
    width: clamp(200px, 35vw, 533px);
    height: auto;
    object-fit: contain;
    margin-left: 20px;
}

.review-right {
    margin-top: 40px;
    flex: 1;
}

.review-stars {
    width: clamp(180px, 14vw, 280px);
    height: auto;
    margin-bottom: 5px;
    margin-left: 62px;
}

.review-body {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.review-quote-icon {
    width: 90px;
    height: auto;
    flex-shrink: 0;
    margin-top: 4px;
}

.review-text {
    color: #d0d0d0;
    font-size: clamp(12px, 2.1vw, 21px);
    line-height: 1.4;
    margin-bottom: 16px;
    /* width: 74%; */
}

.review-body > div > hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, #c8a84e 0%, rgba(200,168,78,0) 100%);
    margin-top: 8px;
}

.review-author {
    font-family: 'Bebas Neue', sans-serif;
    color: #c8a84e;
    font-size: clamp(20px, 1.8vw, 31px);
    font-weight: 400;
    letter-spacing: 2px;
    margin-top: 12px;
    margin-left: 100px;
}

.review-role {
    color: #fff;
    font-size: clamp(14px, 1.61vw, 31px);
    margin-top: 2px;
    margin-left: 100px;
}

.reviews-description {
    color: #999;
    font-size: clamp(16px, 1.93vw, 28px);
    line-height: 1.4;
    text-align: center;
    margin-bottom: 20px;
}

.reviews-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14%;
    margin-top: 45px;
}

.reviews-buttons .btn-gold span {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 6px;
}

.reviews-buttons .btn-gold img {
    background: transparent;
    height: clamp(52px, 5.5vw, 75px);
}

.reviews-buttons .btn-outline {
    padding: 20px 36px;
}

/* ===== VACANCIES ===== */
.vacancies {
    padding: 40px 8.6% 30px;
}

.vacancy-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.vacancy-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, transparent, #000);
    pointer-events: none;
}

.vacancy-card > img {
    display: block;
    width: 100%;
    height: auto;
}

.vacancy-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 53%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.vacancy-overlay h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 7vw, 110px);
    letter-spacing: -5px;
    transform: scaleY(1.15);
    margin-bottom: 20px;
    background: linear-gradient(#cc8b18, #fffb9c 33.61%, #c49520, #cd7320 68.07%, #cc711d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(1px 2px 3px rgba(0,0,0,0.8));
    -webkit-text-stroke: 0.5px rgba(58, 40, 10, 0.4);
    position: relative;
}

.vacancy-overlay h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 5px;
    background: radial-gradient(ellipse at center, #fffb9c 0%, transparent 70%);
}

.vacancy-overlay p {
    color: #f5e8c9;
    font-size: clamp(15px, 1.56vw, 30px);
    letter-spacing: -0.5px;
    font-weight: 700;
}

/* ===== SECURITY ===== */
.security {
    padding: 40px 0 30px 8.6%;
    overflow: hidden;
}

.security-content {
    display: flex;
    /* align-items: center; */
    gap: 40px;
}

.security-text {
    flex: 0 0 50%;
    margin-top: 50px;
}

.security-text p {
    color: #fff;
    font-size: clamp(17px, 2.03vw, 39px);
    line-height: 1.35;
    margin-bottom: 43px;
    margin-top: 50px;
}

.security-text strong {
    color: #fff;
    font-weight: 700;
}

.security-image {
    flex: 1;
    margin-right: -8.6%;
    overflow: hidden;
    max-height: clamp(530px, 59vw, 1070px);
    position: relative;
    z-index: 10;
}

.security-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, transparent, #000);
    pointer-events: none;
}

.security-image img {
    width: 97%;
    height: auto;
    object-fit: cover;
    object-position: top;
    margin-top: -35px;
}

.btn-gold-large {
    margin-top: 10px;
    margin-left: 120px;
}

.btn-gold-large img {
    height: clamp(50px, 7vw, 140px);
}

.btn-gold-large span {
    font-size: clamp(18px, 1.5vw, 40px);
    color: #fff;
}

/* ===== CALC MODAL ===== */
.calc-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
}

.calc-tab {
    flex: 1;
    padding: 12px;
    background: #111;
    border: none;
    color: #888;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.calc-tab.active {
    background: #c8a84e;
    color: #000;
}

.calc-body {
    text-align: center;
}

.calc-rate {
    color: #888;
    font-size: 14px;
    margin-bottom: 20px;
}

.calc-rate span {
    color: #c8a84e;
    font-weight: 700;
}

.calc-label {
    display: block;
    color: #fff;
    font-size: 15px;
    margin-bottom: 14px;
}

.calc-label span {
    color: #c8a84e;
    font-weight: 700;
}

.calc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #333;
    outline: none;
    margin-bottom: 28px;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #c8a84e;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(200, 168, 78, 0.5);
}

.calc-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #c8a84e;
    cursor: pointer;
    border: none;
}

.calc-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #111;
    border: 1px solid #333;
    border-radius: 10px;
}

.calc-result-label {
    color: #888;
    font-size: 16px;
}

.calc-result-sum {
    color: #c8a84e;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.calc-parcel-sizes {
    margin-bottom: 20px;
}

.calc-size-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
}

.calc-size-btn {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid #333;
    background: #111;
    color: #888;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.calc-size-btn.active {
    background: #c8a84e;
    color: #000;
    border-color: #c8a84e;
}

/* ===== MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 40px;
    width: 90%;
    max-width: 460px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    background: none;
    border: none;
    color: #888;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #fff;
}

.modal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: #c8a84e;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.modal form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.modal input,
.modal textarea,
.modal select {
    background: #111;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 14px 16px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.modal input:focus,
.modal textarea:focus,
.modal select:focus {
    border-color: #c8a84e;
}

.modal input::placeholder,
.modal textarea::placeholder {
    color: #555;
}

.modal select {
    appearance: none;
    cursor: pointer;
}

.modal select option {
    background: #1a1a1a;
    color: #fff;
}

.modal-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 6px;
}

.modal-submit:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.modal-submit img {
    height: 52px;
}

.modal-submit span {
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.modal-status {
    text-align: center;
    margin-top: 12px;
    font-size: 14px;
    min-height: 20px;
}

/* ===== FOOTER ===== */
.footer {
    margin-left: -2.7%;
    text-align: left;
}

.footer p {
    color: #777;
    font-size: clamp(12px, 2vw, 39px);
    letter-spacing: 2px;
    margin-top: 20px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    /* --- Section titles --- */
    .section-title {
        font-size: clamp(18px, -2.2vw, 42px);
        margin-bottom: 40px;
        letter-spacing: -0.5px;
        /*white-space: nowrap;*/
        text-align: center;
    }

    /* --- Buttons --- */
    .btn-outline {
        padding: 14px 24px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
        border-radius: 14px;
    }

    .btn-gold img {
        height: 48px;
    }

    .btn-gold span {
        font-size: 12px;
    }

    /* --- HERO --- */
    .hero {
        min-height: 52vh;
    }

    .hero-bg {
        position: absolute;
        top: 0;
        left: -40px;
        width: 110%;
        height: 81%;
        object-fit: cover;
        object-position: 20% top;
    }

    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-width: none;
        padding: 70px 4% 40px 42%;
    }

    .hero-logo {
        width: 95%;
    }

    .hero-text {
        font-size: 12px;
        margin-top: 20px;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 25px;
        align-items: stretch;
    }

    .hero-buttons .btn-gold {
        display: block;
    }

    .hero-buttons .btn-gold img {
        height: 60px;
        width: 100%;
        object-fit: fill;
    }

    .hero-buttons .btn-gold span {
        font-size: 15px;
    }

    .hero-buttons .btn-outline {
        padding: 16px 20px;
        font-size: 13px;
    }

    .hero-subtext {
        font-size: 11px;
        margin-top: 20px;
        line-height: 1.4;
        display: none;
    }

    /* --- ADVANTAGES --- */
    .advantages {
        padding: 30px 8% 20px;
        /* margin-top: -100px; */
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 13px 15px;
        margin-bottom: 20px;
        margin-top: -20px;
    }

    .advantage-card img {
        height: clamp(100px, 28vw, 250px);
        padding-right: 10px;
        margin-bottom: -10px;
    }

    .advantage-card p br {
        display: none;
    }

    .advantage-card h3 {
        font-size: clamp(14px, 3.2vw, 23px);
        padding-left: 10px;
        margin-bottom: 5px;
        color: #dfdfdc;
    }

    .advantage-card p {
        font-size: clamp(11px, 2.5vw, 18px);
        padding-left: 10px;
    }

    /* --- QUOTE --- */
    .quote-section {
        padding: 0 4% 30px;
    }

    .quote-box {
        border-radius: 20px;
        border-width: 1px;
        border-color: rgba(255,255,255,0.15);
    }

    .quote-slider {
        height: clamp(100px, 18vw, 180px);
    }

    .quote-slide {
        padding: 18px 15px;
    }

    .quote-image--right {
        right: -40px;
    }

    .quote-image--left {
        left: -40px;
    }

    .quote-image {
        right: -60px;
        height: 130%;
    }
    .title-line {
        display: none;
    }


    .quote-text {
        font-size: clamp(13px, 3.5vw, 30px);
        max-width: 58%;
        line-height: 1.25;
    }

    .quote-dots span {
        width: 6px;
        height: 6px;
    }

    .quote-dots {
        bottom: 6px;
        gap: 7px;
    }

    /* --- REVIEWS --- */
    .reviews {
        padding: 30px 0 30px;
    }

    .reviews > .section-title {
        font-size: 25px;
        padding-left: 5%;
        margin-bottom: 15px;
    }

    .section-title {
    }

    .review-card {
        margin-bottom: 20px;
    }

    .review-content {
        position: relative;
        flex-direction: row;
        gap: 0;
        min-height: 340px;
    }

    .review-left {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .review-left img {
        width: 62%;
        height: 66%;
        object-fit: cover;
        object-position: top center;
        margin-left: 0;
        mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
        margin-top: -55px;
    }

    .review-right {
        margin-top: 0;
        margin-left: 45%;
        width: 55%;
        position: relative;
        z-index: 2;
        padding: 15px 4% 15px 0;
    }

    .review-stars {
        width: 100px;
        margin-left: auto;
        margin-bottom: 8px;
        display: block;
    }

    .review-quote-icon {
        width: 26px;
    }

    .review-text {
        font-size: 10px;
        width: 100%;
        line-height: 1.4;
    }

    .review-body {
        gap: 6px;
    }

    .review-body > div > hr {
        width: 100%;
        margin-left: auto;
        background: linear-gradient(90deg, rgba(200,168,78,0) 0%, #c8a84e 100%);
    }

    .review-author {
        font-size: 13px;
        margin-left: 0;
        text-align: right;
        color: #c8a84e;
        margin-top: -25px;
    }

    .review-role {
        font-size: 13px;
        margin-left: 0;
        text-align: right;
    }

    .reviews-description {
        font-size: 9px;
        margin-bottom: 15px;
        padding: 0 5%;
        line-height: 1.5;
        text-align: center;
        color: #999;
    }

    .reviews-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
        align-items: center;
        padding: 0 10%;
    }

    .reviews-buttons .btn-gold {
        display: flex;
        padding-bottom: 10%
    }

    .reviews-buttons .btn-outline {
        padding: 14px 30px;
        font-size: 13px;
    }

    /* --- SECTION DIVIDER --- */
    .section-divider {
        width: 100%;
    }

    /* --- VACANCIES --- */
    .vacancies {
        padding: 20px 3.5% 20px;
    }

    .vacancies::before {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, #c8a84e 0%, rgba(200,168,78,0.2) 100%);
        margin-bottom: 18px;
    }

    .vacancies .section-title {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .vacancy-card {
        border-radius: 14px;
    }



    .vacancy-overlay {
    position: absolute;
    top: 0;
    right: 0;
            width: 60%;
        height: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 20px;
}

    .vacancy-overlay h3 {
        font-size: 26px;
        margin-bottom: 6px;
        text-transform: lowercase;
        letter-spacing: 0;
        background: linear-gradient(#cc8b18, #fffb9c 33.61%, #c49520, #cd7320 68.07%, #cc711d);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: drop-shadow(1px 2px 3px rgba(0,0,0,0.8));
        -webkit-text-stroke: 0.5px rgba(58, 40, 10, 0.4);
        transform: none;
    }

    .vacancy-overlay h3::first-letter {
        text-transform: uppercase;
    }

    .vacancy-overlay h3::after {
        display: none;
    }

    .vacancy-overlay p {
        font-size: 8px;
        margin-left: 0px;
        margin-top: -8px;
    }

    /* --- SECURITY --- */
    .security {
        padding: 30px 0 20px 5%;
        overflow: hidden;
        position: relative;
    }

    .security-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
        position: relative;
    }

    .security-text {
        flex: 0 0 55%;
        margin-top: 0;
        position: relative;
        z-index: 2;
        background: url('/static/images/niz.webp') no-repeat top -8px right -15vw;
        background-size: 69% auto;
    }

.quote-image--right {
    right: -60px;
    left: auto;
    top: 50%;
    height: 125%;
    margin-left: 4%;
}

.quote-image--left {
    left: -60px;
    right: auto;
    top: 50%;
    height: 125%;
    margin-left: 4%;
}

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

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

.quote-dots span.active {
    background: rgba(255, 255, 255, 0.7);
}

.quote-text {
    color: #fff;
    font-size: clamp(22px, 2.76vw, 40px);
    line-height: 1.3;
    font-weight: 400;
    position: relative;
    z-index: 2;
    max-width: 55%;
}

.quote-text strong {
    color: #fff;
    font-weight: 700;
}

/* ===== REVIEWS ===== */
.reviews {
    padding: 40px 8.6% 40px;
}

.review-card {
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
}

.review-content {
    display: flex;
    gap: 30px;
}

.review-left {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    position: relative;
}

.review-left img {
    -webkit-mask-image: linear-gradient(to bottom, #000 80%, transparent 100%), linear-gradient(to right, transparent 0%, #000 15%);
    -webkit-mask-composite: destination-in;
    mask-image: linear-gradient(to bottom, #000 80%, transparent 100%), linear-gradient(to right, transparent 0%, #000 15%);
    mask-composite: intersect;
}

.review-left img {
    width: clamp(200px, 35vw, 533px);
    height: auto;
    object-fit: contain;
    margin-left: 20px;
}

.review-right {
    margin-top: 40px;
    flex: 1;
}

.review-stars {
    width: clamp(180px, 14vw, 280px);
    height: auto;
    margin-bottom: 5px;
    margin-left: 62px;
}

.review-body {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.review-quote-icon {
    width: 90px;
    height: auto;
    flex-shrink: 0;
    margin-top: 4px;
}

.review-text {
    color: #d0d0d0;
    font-size: clamp(12px, 2.1vw, 21px);
    line-height: 1.4;
    margin-bottom: 16px;
    /* width: 74%; */
}

.review-body > div > hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, #c8a84e 0%, rgba(200,168,78,0) 100%);
    margin-top: 8px;
}

.review-author {
    font-family: 'Bebas Neue', sans-serif;
    color: #c8a84e;
    font-size: clamp(20px, 1.8vw, 31px);
    font-weight: 400;
    letter-spacing: 2px;
    margin-top: 12px;
    margin-left: 100px;
}

.review-role {
    color: #fff;
    font-size: clamp(14px, 1.61vw, 31px);
    margin-top: 2px;
    margin-left: 100px;
}

.reviews-description {
    color: #999;
    font-size: clamp(16px, 1.93vw, 28px);
    line-height: 1.4;
    text-align: center;
    margin-bottom: 20px;
}

.reviews-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14%;
    margin-top: 45px;
}

.reviews-buttons .btn-gold span {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 6px;
}

.reviews-buttons .btn-gold img {
    background: transparent;
    height: clamp(52px, 5.5vw, 75px);
}

.reviews-buttons .btn-outline {
    padding: 20px 36px;
}

/* ===== VACANCIES ===== */
.vacancies {
    padding: 40px 8.6% 30px;
}

.vacancy-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.vacancy-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, transparent, #000);
    pointer-events: none;
}

.vacancy-card > img {
    display: block;
    width: 100%;
    height: auto;
}

.vacancy-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 53%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.vacancy-overlay h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 7vw, 110px);
    letter-spacing: -5px;
    transform: scaleY(1.15);
    margin-bottom: 20px;
    background: linear-gradient(#cc8b18, #fffb9c 33.61%, #c49520, #cd7320 68.07%, #cc711d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(1px 2px 3px rgba(0,0,0,0.8));
    -webkit-text-stroke: 0.5px rgba(58, 40, 10, 0.4);
    position: relative;
}

.vacancy-overlay h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 5px;
    background: radial-gradient(ellipse at center, #fffb9c 0%, transparent 70%);
}

.vacancy-overlay p {
    color: #f5e8c9;
    font-size: clamp(15px, 1.56vw, 30px);
    letter-spacing: -0.5px;
    font-weight: 700;
}

/* ===== SECURITY ===== */
.security {
    padding: 40px 0 30px 8.6%;
    overflow: hidden;
}

.security-content {
    display: flex;
    /* align-items: center; */
    gap: 40px;
}

.security-text {
    flex: 0 0 50%;
    margin-top: 50px;
}

.security-text p {
    color: #fff;
    font-size: clamp(17px, 2.03vw, 39px);
    line-height: 1.35;
    margin-bottom: 43px;
    margin-top: 50px;
}

.security-text strong {
    color: #fff;
    font-weight: 700;
}

.security-image {
    flex: 1;
    margin-right: -8.6%;
    overflow: hidden;
    max-height: clamp(530px, 59vw, 1070px);
    position: relative;
    z-index: 10;
}

.security-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, transparent, #000);
    pointer-events: none;
}

.security-image img {
    width: 97%;
    height: auto;
    object-fit: cover;
    object-position: top;
    margin-top: -35px;
}

.btn-gold-large {
    margin-top: 10px;
    margin-left: 120px;
}

.btn-gold-large img {
    height: clamp(50px, 7vw, 140px);
}

.btn-gold-large span {
    font-size: clamp(18px, 1.5vw, 40px);
    color: #fff;
}

/* ===== CALC MODAL ===== */
.calc-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
}

.calc-tab {
    flex: 1;
    padding: 12px;
    background: #111;
    border: none;
    color: #888;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.calc-tab.active {
    background: #c8a84e;
    color: #000;
}

.calc-body {
    text-align: center;
}

.calc-rate {
    color: #888;
    font-size: 14px;
    margin-bottom: 20px;
}

.calc-rate span {
    color: #c8a84e;
    font-weight: 700;
}

.calc-label {
    display: block;
    color: #fff;
    font-size: 15px;
    margin-bottom: 14px;
}

.calc-label span {
    color: #c8a84e;
    font-weight: 700;
}

.calc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #333;
    outline: none;
    margin-bottom: 28px;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #c8a84e;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(200, 168, 78, 0.5);
}

.calc-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #c8a84e;
    cursor: pointer;
    border: none;
}

.calc-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #111;
    border: 1px solid #333;
    border-radius: 10px;
}

.calc-result-label {
    color: #888;
    font-size: 16px;
}

.calc-result-sum {
    color: #c8a84e;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.calc-parcel-sizes {
    margin-bottom: 20px;
}

.calc-size-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
}

.calc-size-btn {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid #333;
    background: #111;
    color: #888;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.calc-size-btn.active {
    background: #c8a84e;
    color: #000;
    border-color: #c8a84e;
}

/* ===== MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 40px;
    width: 90%;
    max-width: 460px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    background: none;
    border: none;
    color: #888;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #fff;
}

.modal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: #c8a84e;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.modal form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.modal input,
.modal textarea,
.modal select {
    background: #111;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 14px 16px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.modal input:focus,
.modal textarea:focus,
.modal select:focus {
    border-color: #c8a84e;
}

.modal input::placeholder,
.modal textarea::placeholder {
    color: #555;
}

.modal select {
    appearance: none;
    cursor: pointer;
}

.modal select option {
    background: #1a1a1a;
    color: #fff;
}

.modal-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 6px;
}

.modal-submit:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.modal-submit img {
    height: 52px;
}

.modal-submit span {
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.modal-status {
    text-align: center;
    margin-top: 12px;
    font-size: 14px;
    min-height: 20px;
}

/* ===== FOOTER ===== */
.footer {
    margin-left: -2.7%;
    text-align: left;
}

.footer p {
    color: #777;
    font-size: clamp(12px, 2vw, 39px);
    letter-spacing: 2px;
    margin-top: 20px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    /* --- Section titles --- */
    .section-title {
        font-size: clamp(18px, -2.2vw, 42px);
        margin-bottom: 40px;
        letter-spacing: -0.5px;
        /*white-space: nowrap;*/
        text-align: center;
    }

    /* --- Buttons --- */
    .btn-outline {
        padding: 14px 24px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
        border-radius: 14px;
    }

    .btn-gold img {
        height: 48px;
    }

    .btn-gold span {
        font-size: 12px;
    }

    /* --- HERO --- */
    .hero {
        min-height: 52vh;
    }

    .hero-bg {
        position: absolute;
        top: 0;
        left: -40px;
        width: 110%;
        height: 81%;
        object-fit: cover;
        object-position: 20% top;
    }

    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-width: none;
        padding: 70px 4% 40px 42%;
    }

    .hero-logo {
        width: 95%;
    }

    .hero-text {
        font-size: 12px;
        margin-top: 20px;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 25px;
        align-items: stretch;
    }

    .hero-buttons .btn-gold {
        display: block;
    }

    .hero-buttons .btn-gold img {
        height: 60px;
        width: 100%;
        object-fit: fill;
    }

    .hero-buttons .btn-gold span {
        font-size: 15px;
    }

    .hero-buttons .btn-outline {
        padding: 16px 20px;
        font-size: 13px;
    }

    .hero-subtext {
        font-size: 11px;
        margin-top: 20px;
        line-height: 1.4;
        display: none;
    }

    /* --- ADVANTAGES --- */
    .advantages {
        padding: 30px 8% 20px;
        /* margin-top: -100px; */
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 13px 15px;
        margin-bottom: 20px;
        margin-top: -20px;
    }

    .advantage-card img {
        height: clamp(100px, 28vw, 250px);
        padding-right: 10px;
        margin-bottom: -10px;
    }

    .advantage-card p br {
        display: none;
    }

    .advantage-card h3 {
        font-size: clamp(14px, 3.2vw, 23px);
        padding-left: 10px;
        margin-bottom: 5px;
        color: #dfdfdc;
    }

    .advantage-card p {
        font-size: clamp(11px, 2.5vw, 18px);
        padding-left: 10px;
    }

    /* --- QUOTE --- */
    .quote-section {
        padding: 0 4% 30px;
    }

    .quote-box {
        border-radius: 20px;
        border-width: 1px;
        border-color: rgba(255,255,255,0.15);
        min-height: clamp(0px, 21vw, 408px);
    }

    .quote-slider {
        height: clamp(100px, 18vw, 180px);
    }

    .quote-slide {
        padding: 18px 15px;
    }
    .quote-image {
        right: -50px;
        height: 160%;
    }

    .quote-image--right {
        right: -5px;
        height: 100%;

    }

    .quote-image--left {
        left: -16px;
        height: 100%;
    }

    .title-line {
        display: none;
    }


    .quote-text {
        font-size: clamp(13px, 3.5vw, 30px);
        max-width: 58%;
        line-height: 1.25;
    }

    .quote-dots span {
        width: 6px;
        height: 6px;
    }

    .quote-dots {
        bottom: 6px;
        gap: 7px;
    }

    /* --- REVIEWS --- */
    .reviews {
        padding: 30px 0 30px;
    }

    .reviews > .section-title {
        font-size: 25px;
        padding-left: 5%;
        margin-bottom: 15px;
    }

    .section-title {
    }

    .review-card {
        margin-bottom: 20px;
    }

    .review-content {
        position: relative;
        flex-direction: row;
        gap: 0;
        min-height: 340px;
    }

    .review-left {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .review-left img {
        width: 62%;
        height: 66%;
        object-fit: cover;
        object-position: top center;
        margin-left: 0;
        mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
        margin-top: -55px;
    }

    .review-right {
        margin-top: 0;
        margin-left: 45%;
        width: 55%;
        position: relative;
        z-index: 2;
        padding: 15px 4% 15px 0;
    }

    .review-stars {
        width: 100px;
        margin-left: auto;
        margin-bottom: 8px;
        display: block;
    }

    .review-quote-icon {
        width: 26px;
    }

    .review-text {
        font-size: 10px;
        width: 100%;
        line-height: 1.4;
    }

    .review-body {
        gap: 6px;
    }

    .review-body > div > hr {
        width: 100%;
        margin-left: auto;
        background: linear-gradient(90deg, rgba(200,168,78,0) 0%, #c8a84e 100%);
    }

    .review-author {
        font-size: 13px;
        margin-left: 0;
        text-align: right;
        color: #c8a84e;
        margin-top: -25px;
    }

    .review-role {
        font-size: 13px;
        margin-left: 0;
        text-align: right;
    }

    .reviews-description {
        font-size: 9px;
        margin-bottom: 15px;
        padding: 0 5%;
        line-height: 1.5;
        text-align: center;
        color: #999;
    }

    .reviews-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
        align-items: center;
        padding: 0 10%;
    }

    .reviews-buttons .btn-gold {
        display: flex;
        padding-bottom: 10%
    }

    .reviews-buttons .btn-outline {
        padding: 14px 30px;
        font-size: 13px;
    }

    /* --- SECTION DIVIDER --- */
    .section-divider {
        width: 100%;
    }

    /* --- VACANCIES --- */
    .vacancies {
        padding: 20px 3.5% 20px;
    }

    .vacancies::before {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, #c8a84e 0%, rgba(200,168,78,0.2) 100%);
        margin-bottom: 18px;
    }

    .vacancies .section-title {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .vacancy-card {
        border-radius: 14px;
    }



    .vacancy-overlay {
    position: absolute;
    top: 0;
    right: 0;
            width: 60%;
        height: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 20px;
}

    .vacancy-overlay h3 {
        font-size: 26px;
        margin-bottom: 6px;
        text-transform: lowercase;
        letter-spacing: 0;
        background: linear-gradient(#cc8b18, #fffb9c 33.61%, #c49520, #cd7320 68.07%, #cc711d);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: drop-shadow(1px 2px 3px rgba(0,0,0,0.8));
        -webkit-text-stroke: 0.5px rgba(58, 40, 10, 0.4);
        transform: none;
    }

    .vacancy-overlay h3::first-letter {
        text-transform: uppercase;
    }

    .vacancy-overlay h3::after {
        display: none;
    }

    .vacancy-overlay p {
        font-size: 8px;
        margin-left: 0px;
        margin-top: -8px;
    }

    /* --- SECURITY --- */
    .security {
        padding: 30px 0 20px 5%;
        overflow: hidden;
        position: relative;
    }

    .security-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
        position: relative;
    }

    .security-text {
        flex: 0 0 55%;
        margin-top: 0;
        position: relative;
        z-index: 2;
        background: url('/static/images/niz.webp') no-repeat top -8px right -15vw;
        background-size: 69% auto;
    }

    .security-text::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 70%;
        height: 40%;
        background: linear-gradient(to bottom, transparent, #000);
        pointer-events: none;
        z-index: -1;
    }

    .security-text p {
        font-size: clamp(12px, 0.2vw, 15px);
        margin-bottom: 22px;
        margin-top: 12px;
        line-height: 1.4;
        width: 56%;
    }

    .security-image {
        display: none;
    }

    .btn-gold-large {
        position: relative;
        margin-left: -5vw;
        width: 100vw;
        margin-top: 30px;
        display: flex;
        justify-content: center;
    }

    .btn-gold-large img {
        height: 74px;
        width: 60vw;
        max-width: 240px;
        object-fit: fill;
    }

    .btn-gold-large span {
        font-size: 14px;
        letter-spacing: 1.5px;
    }

    /* --- FOOTER --- */
    .footer {
        margin-left: -5%;
        text-align: center;
        padding: 0;
        width: 100vw;
    }

    .footer p {
        font-size: 17px;
        margin-top: 25px;
        letter-spacing: 2px;
        padding-bottom: 20px;
    }
}
