/* =========================================
   MILSERVE PORTAL
   LEAVE APPLICATION STYLES
========================================= */

/* =========================================
   GOOGLE FONTS
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Oswald:wght@400;500;600&display=swap');


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #080c09;
    color: #f1f3ef;
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}


/* =========================================
   NAVIGATION
========================================= */

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(
            180deg,
            rgba(5, 8, 6, 0.92),
            rgba(5, 8, 6, 0.55),
            transparent
        );
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-symbol {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #b7a35a;
    color: #10140f;

    font-family: "Oswald", sans-serif;
    font-size: 18px;
    font-weight: 600;

    clip-path: polygon(
        50% 0%,
        93% 25%,
        93% 75%,
        50% 100%,
        7% 75%,
        7% 25%
    );

    box-shadow:
        0 0 25px rgba(183, 163, 90, 0.12);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text span {
    font-family: "Oswald", sans-serif;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 1px;
}

.brand-text small {
    margin-top: 4px;
    color: #a5aa9f;
    font-size: 8px;
    letter-spacing: 2px;
}

.back-link {
    color: #c7ccbf;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.back-link:hover {
    color: #d4c47f;
    transform: translateX(-4px);
}


/* =========================================
   LEAVE HERO
========================================= */

.leave-hero {
    min-height: 55vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #080d0a;
}

.hero-background {
    position: absolute;
    inset: 0;

    background-image: url("../img/leave.jpg");
    background-size: cover;
    background-position: center;

    transform: scale(1.04);
    filter: saturate(0.65) contrast(1.1);

    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(3, 7, 5, 0.97) 0%,
            rgba(4, 9, 6, 0.82) 40%,
            rgba(4, 8, 6, 0.45) 100%
        ),
        linear-gradient(
            180deg,
            rgba(3, 7, 5, 0.45),
            rgba(3, 7, 5, 0.95)
        );
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 2;

    pointer-events: none;
    opacity: 0.17;

    background-image:
        linear-gradient(
            rgba(183, 163, 90, 0.18) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(183, 163, 90, 0.18) 1px,
            transparent 1px
        );

    background-size: 75px 75px;

    mask-image:
        linear-gradient(
            to right,
            black,
            transparent 90%
        );
}

.leave-hero::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;
    z-index: 4;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(183, 163, 90, 0.65),
            transparent
        );

    box-shadow:
        0 0 20px rgba(183, 163, 90, 0.25);
}

.leave-hero-content {
    position: relative;
    z-index: 5;

    padding-top: 170px;
    padding-bottom: 75px;

    max-width: 850px;
}

.page-label {
    display: inline-flex;
    align-items: center;

    margin-bottom: 18px;

    color: #b7a35a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.page-label::before {
    content: "";

    width: 28px;
    height: 1px;
    margin-right: 12px;

    background: #b7a35a;
}

.leave-hero h1 {
    font-family: "Oswald", sans-serif;
    font-size: clamp(55px, 8vw, 95px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.leave-hero h1 span {
    display: block;
    color: #b7a35a;
}

.leave-hero p {
    max-width: 600px;
    margin-top: 25px;

    color: #a4aaa2;
    font-size: 15px;
}


/* =========================================
   APPLICATION SECTION
========================================= */

.application-section {
    position: relative;
    padding: 90px 0 120px;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(183, 163, 90, 0.05),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(61, 77, 61, 0.12),
            transparent 35%
        ),
        #080c09;
}

.application-section::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;
    opacity: 0.035;

    background-image:
        linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.2) 1px,
            transparent 1px
        );

    background-size: 5px 5px;
}


/* =========================================
   PROGRESS
========================================= */

.progress-wrapper {
    position: relative;

    display: flex;
    align-items: center;

    max-width: 850px;
    margin: 0 auto 55px;
}

.progress-step {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    min-width: 70px;

    color: #626a62;
    transition: 0.3s ease;
}

.progress-step span {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 8px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #0b100d;
    color: #626a62;

    font-family: "Oswald", sans-serif;
    font-size: 13px;

    transition: 0.3s ease;
}

.progress-step small {
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.progress-step.active {
    color: #d4c47f;
}

.progress-step.active span {
    border-color: #b7a35a;
    background: #b7a35a;
    color: #10140f;

    box-shadow:
        0 0 20px rgba(183, 163, 90, 0.15);
}

.progress-line {
    flex: 1;

    height: 1px;
    margin: 0 8px 25px;

    background:
        linear-gradient(
            90deg,
            rgba(183, 163, 90, 0.45),
            rgba(255, 255, 255, 0.08)
        );
}


/* =========================================
   APPLICATION CARD
========================================= */

.application-card {
    position: relative;

    max-width: 900px;
    margin: 0 auto;
    padding: 50px;

    background:
        linear-gradient(
            135deg,
            rgba(21, 28, 22, 0.98),
            rgba(11, 16, 12, 0.98)
        );

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35);

    overflow: hidden;
}

.application-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            #b7a35a,
            transparent 65%
        );
}

.application-card::after {
    content: "MILSERVE";

    position: absolute;
    right: -25px;
    bottom: -20px;

    color: rgba(255, 255, 255, 0.018);

    font-family: "Oswald", sans-serif;
    font-size: 110px;
    font-weight: 600;

    pointer-events: none;
}


/* =========================================
   CARD HEADER
========================================= */

.card-header {
    position: relative;

    display: flex;
    justify-content: space-between;

    gap: 30px;
    margin-bottom: 45px;
}

.section-label {
    display: block;

    margin-bottom: 12px;

    color: #b7a35a;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
}

.card-header h2 {
    font-family: "Oswald", sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
}

.card-header p {
    max-width: 570px;
    margin-top: 14px;

    color: #7f897f;
    font-size: 13px;
}

.card-number {
    color: rgba(183, 163, 90, 0.25);

    font-family: "Oswald", sans-serif;
    font-size: 70px;
    line-height: 0.8;
}


/* =========================================
   FORM
========================================= */

.search-form {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.form-group {
    flex: 1;
    margin-bottom: 25px;
}

.form-group label {
    display: block;

    margin-bottom: 10px;

    color: #c5cbc4;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.field-help {
    display: block;

    margin-top: 8px;

    color: #596159;
    font-size: 10px;
}

.input-container {
    position: relative;
}

.input-prefix {
    position: absolute;
    left: 0;
    top: 0;

    width: 48px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-right: 1px solid rgba(255, 255, 255, 0.08);

    color: #b7a35a;

    font-family: "Oswald", sans-serif;
    font-size: 11px;

    z-index: 2;
}

input,
textarea,
select {
    width: 100%;

    border: 1px solid rgba(255, 255, 255, 0.11);
    outline: none;

    background: #070b08;
    color: #f1f3ef;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

input {
    height: 52px;
    padding: 0 18px;
}

.input-container input {
    padding-left: 65px;
}

textarea {
    resize: vertical;
    min-height: 140px;
    padding: 16px 18px;
}

select {
    height: 52px;
    padding: 0 18px;

    appearance: none;

    background-image:
        linear-gradient(45deg, transparent 50%, #b7a35a 50%),
        linear-gradient(135deg, #b7a35a 50%, transparent 50%);

    background-position:
        calc(100% - 20px) 22px,
        calc(100% - 14px) 22px;

    background-size:
        6px 6px,
        6px 6px;

    background-repeat: no-repeat;
}

input:focus,
textarea:focus,
select:focus {
    border-color: rgba(183, 163, 90, 0.75);

    background: #0a0f0c;

    box-shadow:
        0 0 0 3px rgba(183, 163, 90, 0.05);
}

input::placeholder,
textarea::placeholder {
    color: #4e574f;
}


/* =========================================
   BUTTONS
========================================= */

.btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 20px;
    padding: 0 25px;

    border: 1px solid transparent;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.btn span {
    font-size: 17px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:hover span {
    transform: translateX(4px);
}

.btn-primary {
    background: #b7a35a;
    color: #10140f;

    box-shadow:
        0 8px 25px rgba(183, 163, 90, 0.08);
}

.btn-primary:hover {
    background: #d0be70;

    box-shadow:
        0 10px 30px rgba(183, 163, 90, 0.15);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.18);

    background: transparent;
    color: #dce0db;
}

.btn-outline:hover {
    border-color: #b7a35a;
    color: #d4c47f;
}


/* =========================================
   SEARCH STATUS
========================================= */

.search-status {
    min-height: 20px;
    margin-top: 20px;

    color: #b7a35a;
    font-size: 11px;
    letter-spacing: 0.5px;
}


/* =========================================
   PERSONNEL RESULT HEADER
========================================= */

.personnel-result-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 30px;
}


/* =========================================
   PERSONNEL INFORMATION
========================================= */

.personnel-result-info {
    flex: 1;
    min-width: 0;
}


/* =========================================
   PASSPORT PHOTOGRAPH
========================================= */

.personnel-passport {
    width: 120px;
    height: 150px;

    flex-shrink: 0;
    overflow: hidden;

    border: 2px solid #d4af37;
    border-radius: 6px;

    background: #f1f1f1;

    display: flex;
    align-items: center;
    justify-content: center;
}

.personnel-passport img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;
}


/* =========================================
   PERSONNEL RESULT
========================================= */

.personnel-result {
    margin-top: 30px;
    padding: 28px;

    background:
        linear-gradient(
            135deg,
            rgba(183, 163, 90, 0.055),
            rgba(255, 255, 255, 0.015)
        );

    border: 1px solid rgba(183, 163, 90, 0.22);

    animation: revealResult 0.5s ease;
}

@keyframes revealResult {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 18px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.result-status {
    color: #b7a35a;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.result-check {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #b7a35a;

    color: #b7a35a;
    font-size: 12px;
}

.personnel-details {
    display: flex;
    align-items: center;

    gap: 20px;
    margin: 25px 0;
}

.personnel-avatar {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background:
        linear-gradient(
            135deg,
            #b7a35a,
            #746a3b
        );

    color: #10140f;

    font-family: "Oswald", sans-serif;
    font-size: 19px;
    font-weight: 600;

    clip-path: polygon(
        50% 0%,
        93% 25%,
        93% 75%,
        50% 100%,
        7% 75%,
        7% 25%
    );
}

.detail-label {
    color: #626b62;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

.personnel-info h3 {
    margin-top: 3px;

    color: #f0f2ee;

    font-family: "Oswald", sans-serif;
    font-size: 28px;
    font-weight: 500;

    text-transform: uppercase;
}

.personnel-info p {
    color: #8b948b;
    font-size: 12px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 12px;
    margin-bottom: 25px;
}

.detail-box {
    padding: 17px;

    background: rgba(0, 0, 0, 0.18);

    border: 1px solid rgba(255, 255, 255, 0.06);
}

.detail-box span {
    display: block;

    margin-bottom: 5px;

    color: #626a62;

    font-size: 8px;
    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.detail-box strong {
    color: #d9ddd7;
    font-size: 12px;
}

.continue-button {
    width: 100%;
}


/* =========================================
   HIDDEN SECTIONS
========================================= */

.hidden-section {
    display: none;
}

.application-card.show {
    display: block;
    animation: sectionIn 0.5s ease;
}

@keyframes sectionIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================
   FORM GRID
========================================= */

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}


/* =========================================
   CHARACTER COUNT
========================================= */

.character-count {
    margin-top: 7px;

    color: #4f584f;

    font-size: 9px;
    text-align: right;
}


/* =========================================
   FORM ACTIONS
========================================= */

.form-actions {
    display: flex;
    justify-content: space-between;

    gap: 15px;
    margin-top: 25px;
    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.07);
}


/* =========================================
   DURATION OPTIONS
========================================= */

.duration-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.duration-option {
    position: relative;

    display: flex;
    align-items: center;

    gap: 18px;
    padding: 20px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    background: #090e0b;

    cursor: pointer;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.duration-option:hover {
    border-color: rgba(183, 163, 90, 0.35);
    transform: translateX(4px);
}

.duration-option input {
    width: 18px;
    height: 18px;

    accent-color: #b7a35a;
    flex-shrink: 0;
}

.duration-option:has(input:checked) {
    border-color: rgba(183, 163, 90, 0.75);

    background:
        linear-gradient(
            90deg,
            rgba(183, 163, 90, 0.08),
            rgba(183, 163, 90, 0.015)
        );

    box-shadow:
        inset 3px 0 0 #b7a35a;
}

.duration-content {
    flex: 1;

    display: flex;
    flex-direction: column;
}

.duration-content strong {
    color: #e3e6e1;

    font-family: "Oswald", sans-serif;
    font-size: 20px;
    font-weight: 500;

    text-transform: uppercase;
}

.duration-content small {
    margin-top: 3px;

    color: #687168;
    font-size: 10px;
}

.duration-price {
    color: #d4c47f;

    font-family: "Oswald", sans-serif;
    font-size: 22px;

    white-space: nowrap;
}


/* =========================================
   FEE SUMMARY
========================================= */

.fee-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;

    margin-top: 25px;

    border: 1px solid rgba(183, 163, 90, 0.2);
    background: rgba(183, 163, 90, 0.035);
}

.fee-summary > div {
    padding: 22px;
}

.fee-summary > div + div {
    border-left: 1px solid rgba(183, 163, 90, 0.15);
}

.fee-summary span {
    display: block;

    margin-bottom: 7px;

    color: #687168;

    font-size: 9px;
    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.fee-summary strong {
    color: #d4c47f;

    font-family: "Oswald", sans-serif;
    font-size: 25px;
    font-weight: 500;
}


/* =========================================
   REVIEW
========================================= */

.review-container {
    display: grid;
    grid-template-columns: 1fr 1fr;

    border: 1px solid rgba(255, 255, 255, 0.07);
}

.review-block {
    padding: 20px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.review-block:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.review-block span,
.review-reason span {
    display: block;

    margin-bottom: 6px;

    color: #606960;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.review-block strong {
    color: #e0e4de;
    font-size: 13px;
}

.review-reason {
    grid-column: 1 / -1;
    padding: 22px;
}

.review-reason p {
    color: #9aa19a;

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================
   FICTIONAL WARNING
========================================= */

.fictional-warning {
    margin-top: 20px;
    padding: 18px 20px;

    border-left: 2px solid #b7a35a;
    background: rgba(183, 163, 90, 0.035);
}

.fictional-warning strong {
    display: block;

    margin-bottom: 5px;

    color: #b7a35a;

    font-size: 9px;
    letter-spacing: 2px;
}

.fictional-warning p {
    color: #707970;

    font-size: 10px;
    line-height: 1.7;
}


/* =========================================
   SUCCESS CARD
========================================= */

.success-card {
    position: relative;

    max-width: 700px;
    margin: 0 auto;
    padding: 65px 50px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #151c16,
            #0b100d
        );

    border: 1px solid rgba(183, 163, 90, 0.25);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35);
}

.success-card.show {
    display: block;
    animation: sectionIn 0.6s ease;
}

.success-icon {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 25px;

    border: 1px solid #b7a35a;

    color: #b7a35a;
    font-size: 28px;

    box-shadow:
        0 0 30px rgba(183, 163, 90, 0.08);
}

.success-card h2 {
    margin-top: 10px;

    font-family: "Oswald", sans-serif;
    font-size: 46px;
    font-weight: 500;

    text-transform: uppercase;
}

.success-card > p {
    max-width: 500px;

    margin: 15px auto 30px;

    color: #858e85;
    font-size: 13px;
}

.reference-box {
    padding: 20px;
    margin: 30px 0;

    border: 1px solid rgba(183, 163, 90, 0.2);

    background: rgba(183, 163, 90, 0.035);
}

.reference-box span {
    display: block;

    margin-bottom: 6px;

    color: #626a62;

    font-size: 8px;
    letter-spacing: 2px;
}

.reference-box strong {
    color: #d4c47f;

    font-family: "Oswald", sans-serif;
    font-size: 30px;
    letter-spacing: 2px;
}

.success-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-bottom: 35px;

    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.success-details > div {
    padding: 18px 10px;
}

.success-details > div + div {
    border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.success-details span {
    display: block;

    margin-bottom: 5px;

    color: #596159;

    font-size: 8px;
    letter-spacing: 1px;

    text-transform: uppercase;
}

.success-details strong {
    color: #d9ddd7;
    font-size: 11px;
}


/* =========================================
   FOOTER
========================================= */

footer {
    position: relative;

    padding: 55px 0 0;

    background: #060906;

    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding-bottom: 45px;
}

.footer-content p {
    color: #5d655d;
    font-size: 11px;
}

.footer-bottom {
    padding: 20px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.06);

    color: #454d45;
    font-size: 9px;
    letter-spacing: 0.5px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .leave-hero-content {
        padding-top: 150px;
    }

    .application-card {
        padding: 40px 30px;
    }

    .search-form {
        flex-direction: column;
        align-items: stretch;
    }

    .search-form .btn {
        width: 100%;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
}


@media (max-width: 650px) {

    .navbar {
        padding: 18px 0;
    }

    .brand-symbol {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .brand-text span {
        font-size: 18px;
    }

    .back-link {
        font-size: 9px;
    }

    .leave-hero {
        min-height: 60vh;
    }

    .leave-hero-content {
        padding-top: 140px;
        padding-bottom: 55px;
    }

    .leave-hero h1 {
        font-size: 58px;
    }

    .leave-hero p {
        font-size: 13px;
    }

    .application-section {
        padding: 65px 0 85px;
    }

    .progress-wrapper {
        margin-bottom: 40px;
    }

    .progress-step {
        min-width: 45px;
    }

    .progress-step span {
        width: 34px;
        height: 34px;
        font-size: 10px;
    }

    .progress-step small {
        font-size: 7px;
    }

    .progress-line {
        margin-bottom: 23px;
    }

    .application-card {
        padding: 30px 20px;
    }

    .card-header {
        margin-bottom: 35px;
    }

    .card-header h2 {
        font-size: 34px;
    }

    .card-number {
        font-size: 50px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .duration-option {
        padding: 16px;
    }

    .duration-content strong {
        font-size: 17px;
    }

    .duration-price {
        font-size: 17px;
    }

    .fee-summary {
        grid-template-columns: 1fr;
    }

    .fee-summary > div + div {
        border-left: none;
        border-top: 1px solid rgba(183, 163, 90, 0.15);
    }

    .form-actions {
        flex-direction: column-reverse;
    }

    .form-actions .btn {
        width: 100%;
    }

    .review-container {
        grid-template-columns: 1fr;
    }

    .review-block:nth-child(odd) {
        border-right: none;
    }

    .review-block {
        border-right: none !important;
    }

    .review-reason {
        grid-column: auto;
    }

    .success-card {
        padding: 45px 22px;
    }

    .success-card h2 {
        font-size: 37px;
    }

    .success-details {
        grid-template-columns: 1fr;
    }

    .success-details > div + div {
        border-left: none;

        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }

    .success-card .btn {
        width: 100%;
    }

    .personnel-result-header {
        gap: 15px;
    }

    .personnel-passport {
        width: 90px;
        height: 115px;
    }
}