:root {
    --navy: #061d33;
    --navy-deep: #031324;
    --navy-soft: #102f4a;
    --gold: #d9ad55;
    --gold-light: #eac46c;
    --text: #0f1b2f;
    --muted: #5f6875;
    --line: #e6e8ec;
    --white: #ffffff;
    --shadow: 0 14px 36px rgba(7, 24, 40, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: #ffffff;
    font-family: "Cairo", Tahoma, Arial, sans-serif;
    line-height: 1.8;
}

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

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

.container {
    width: min(1190px, calc(100% - 48px));
    margin-inline: auto;
}

.topbar {
    background: var(--navy-deep);
    color: var(--white);
    font-size: 13px;
}

.topbar__inner,
.topbar__contact,
.topbar__tools,
.topbar__social,
.navbar__inner,
.brand,
.nav-links,
.nav-actions,
.hero__actions,
.section-title {
    display: flex;
    align-items: center;
}

.topbar__inner {
    justify-content: space-between;
    min-height: 38px;
}

.topbar__contact,
.topbar__social,
.topbar__tools {
    gap: 22px;
}

.topbar__tools {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.language-switcher {
    display: inline-flex;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
}

.language-switcher__button {
    min-height: 26px;
    padding: 3px 12px;
    border: 0;
    border-radius: 3px;
    color: rgba(255, 255, 255, 0.82);
    background: transparent;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.language-switcher__button.is-active {
    color: #16202d;
    background: var(--gold);
}

.topbar a,
.topbar span {
    opacity: 0.95;
}

.topbar__contact a,
.footer a[href^="tel"],
.footer a[href^="mailto"] {
    direction: ltr;
    unicode-bidi: embed;
}

.topbar i {
    margin-inline-start: 7px;
    color: var(--white);
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 20px rgba(8, 27, 44, 0.08);
}

.navbar__inner {
    min-height: 76px;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    gap: 12px;
    color: var(--navy);
}

.brand__mark {
    width: 118px;
    height: 78px;
    display: grid;
    place-items: center;
    color: var(--navy);
    overflow: hidden;
    border-radius: 6px;
    font-size: 0;
}

.brand__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand__text {
    display: grid;
    gap: 0;
}

.brand strong {
    color: var(--gold);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
}

.brand small {
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
}

.nav-links {
    flex: 1;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 15px;
    font-weight: 800;
}

.nav-actions {
    gap: 14px;
    flex-shrink: 0;
}

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    direction: ltr;
    color: #1c2735;
    font-weight: 900;
    white-space: nowrap;
}

.nav-phone i {
    color: var(--gold);
    font-size: 26px;
}

.btn--nav {
    min-width: 150px;
    min-height: 48px;
    padding-inline: 22px;
    border: 0;
    cursor: pointer;
}

.btn--light-gold {
    min-width: 120px;
    min-height: 46px;
    border: 0;
    color: #ffffff;
    background: #f4b631;
    cursor: pointer;
    box-shadow: none;
}

.nav-links a {
    position: relative;
    display: block;
    padding: 28px 0 24px;
    color: var(--text);
}

.nav-links a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    content: "";
    background: var(--gold);
    transition: width 0.2s ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    border: 0;
    color: var(--navy);
    background: transparent;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.hero {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-deep);
}

.hero__media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(270deg, rgba(3, 19, 36, 0.98) 0%, rgba(4, 23, 41, 0.88) 42%, rgba(6, 27, 47, 0.58) 68%, rgba(7, 20, 33, 0.08) 100%),
        url("../images/hero-construction.png") left center / cover no-repeat;
}

.hero__content {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero__copy {
    width: min(720px, 100%);
    padding-block: 58px;
}

.hero h1 {
    margin: 0 0 24px;
    color: var(--white);
    font-size: clamp(32px, 3.8vw, 50px);
    font-weight: 900;
    line-height: 1.42;
}

.hero h1::first-line {
    color: var(--white);
}

.hero h1 {
    text-wrap: balance;
}

.hero h1 span {
    display: block;
    color: var(--gold-light);
}

.hero p {
    width: min(680px, 100%);
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    font-weight: 700;
}

.hero__actions {
    gap: 26px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 54px;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--gold {
    color: #1b2430;
    background: linear-gradient(180deg, var(--gold-light), var(--gold));
    box-shadow: 0 10px 26px rgba(217, 173, 85, 0.25);
}

.btn--outline {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.85);
}

.section {
    padding: 30px 0 28px;
}

.section-title {
    justify-content: center;
    gap: 14px;
    margin-bottom: 26px;
}

.section-title h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(25px, 2.8vw, 34px);
    font-weight: 900;
    line-height: 1.3;
}

.section-title span {
    width: 62px;
    height: 2px;
    background: var(--gold);
}

.section-title span::after {
    display: block;
    width: 8px;
    height: 8px;
    margin: -3px auto 0;
    content: "";
    border-radius: 50%;
    background: var(--gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.service-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(7, 24, 40, 0.18);
}

.service-card img {
    width: 100%;
    height: 146px;
    object-fit: cover;
}

.service-card__icon {
    position: relative;
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    margin: -35px auto 14px;
    color: var(--white);
    border-radius: 50%;
    background: var(--navy-soft);
    border: 6px solid rgba(255, 255, 255, 0.86);
    font-size: 26px;
}

.service-card__body {
    padding: 0 23px 22px;
    text-align: center;
}

.service-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
    line-height: 1.4;
    font-weight: 900;
}

.service-card p {
    min-height: 82px;
    margin: 0 0 16px;
    color: #202938;
    font-size: 15px;
    font-weight: 700;
}

.service-card a {
    color: #111a27;
    font-size: 14px;
    font-weight: 900;
}

.why {
    position: relative;
    padding: 32px 0 42px;
    color: var(--white);
    background:
        linear-gradient(rgba(3, 19, 36, 0.94), rgba(3, 19, 36, 0.94)),
        url("../images/hero-construction.png") center / cover no-repeat;
}

.section-title--dark h2 {
    color: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 26px;
}

.feature-item {
    display: grid;
    justify-items: center;
    gap: 13px;
    color: var(--white);
    text-align: center;
    font-size: 17px;
    font-weight: 800;
}

.feature-item i {
    color: var(--gold);
    font-size: 35px;
}

.process {
    padding-top: 32px;
}

.steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 42px;
    margin-top: 12px;
    text-align: center;
}

.steps::before {
    position: absolute;
    top: 22px;
    right: 12%;
    left: 12%;
    border-top: 2px dotted #87909c;
    content: "";
}

.step {
    position: relative;
    z-index: 1;
}

.step__number {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin: 0 auto 8px;
    color: var(--white);
    border-radius: 50%;
    background: var(--navy);
    font-size: 20px;
    font-weight: 900;
}

.step__icon {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    margin: 0 auto 8px;
    color: #1f2937;
    border-radius: 50%;
    background: #f2f2f2;
    font-size: 31px;
}

.step h3 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 900;
}

.step p {
    width: min(150px, 100%);
    margin: 0 auto;
    color: #2e3542;
    font-size: 14px;
    font-weight: 700;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 44px;
    overflow: hidden;
    border-radius: 16px;
    color: var(--white);
    background: var(--navy);
    box-shadow: 0 12px 34px rgba(7, 24, 40, 0.2);
}

.stat {
    display: grid;
    justify-items: center;
    gap: 4px;
    padding: 26px 20px;
    text-align: center;
    border-inline-start: 1px solid rgba(255, 255, 255, 0.22);
}

.stat:first-child {
    border-inline-start: 0;
}

.stat i,
.stat strong {
    color: var(--gold);
}

.stat i {
    font-size: 31px;
}

.stat strong {
    font-size: 33px;
    line-height: 1.15;
    font-weight: 900;
}

.stat span {
    font-size: 15px;
    font-weight: 800;
}

.cta {
    padding: 38px 0 42px;
    text-align: center;
    background:
        linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.9)),
        url("../images/cta-office.png") center / cover no-repeat;
}

.student-application {
    padding: 38px 0 56px;
    background: #fde8e7;
}

.google-form-shell {
    width: min(650px, calc(100% - 34px));
    margin: 0 auto;
    color: #202124;
    font-family: Arial, Tahoma, sans-serif;
    line-height: 1.45;
}

.google-logo-card,
.google-form-card {
    border: 1px solid #dadce0;
    border-radius: 8px;
    background: #ffffff;
}

.google-logo-card {
    display: grid;
    justify-items: center;
    gap: 2px;
    padding: 20px;
    margin-bottom: 12px;
    text-align: center;
}

.google-logo {
    width: 190px;
    height: 190px;
    border-radius: 10px;
    object-fit: cover;
}

.uni-logo {
    color: #111827;
    font-size: 35px;
    font-weight: 900;
    line-height: 1;
}

.uni-logo span {
    color: #e90000;
    font-size: 48px;
    letter-spacing: -3px;
}

.google-logo-card strong {
    font-size: 18px;
}

.google-logo-card small {
    color: #4f5662;
    font-size: 12px;
}

.google-form-card {
    margin-bottom: 12px;
    padding: 22px 24px;
}

.google-form-card--intro {
    border-top: 9px solid #e90000;
}

.google-form-card--intro h1,
.google-form-card--intro h2 {
    margin: 0 0 12px;
    color: #111827;
    font-size: 25px;
    line-height: 1.24;
    font-weight: 700;
}

.google-form-card--intro p {
    margin: 0 0 12px;
    color: #202124;
    font-size: 13px;
}

.required-note {
    color: #d93025 !important;
    font-size: 12px !important;
}

.google-style-form {
    display: grid;
}

.google-field,
.google-upload {
    display: grid;
    gap: 13px;
}

.google-field span,
.google-upload span,
.google-options legend {
    color: #202124;
    font-size: 14px;
    font-weight: 700;
}

.google-field b,
.google-upload b,
.google-options b {
    color: #d93025;
}

.google-field small,
.google-upload small {
    color: #5f6368;
    font-size: 12px;
}

.google-field input,
.google-field select {
    width: min(300px, 100%);
    min-height: 38px;
    padding: 6px 0;
    border: 0;
    border-bottom: 1px solid #dadce0;
    color: #202124;
    background: transparent;
    font: inherit;
    font-size: 14px;
    outline: none;
}

.google-field select {
    width: min(350px, 100%);
    padding: 9px 12px;
    border: 1px solid #dadce0;
    background: #ffffff;
}

.google-field input:focus {
    border-bottom-color: #d93025;
}

.google-options {
    display: grid;
    gap: 13px;
    margin-inline: 0;
}

.google-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 400;
}

.google-options input {
    width: 18px;
    height: 18px;
    accent-color: #e90000;
}

.google-upload input {
    width: min(330px, 100%);
    padding: 8px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    background: #ffffff;
    color: #1a73e8;
    font-size: 13px;
}

.google-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 12px;
}

.google-actions button {
    min-height: 38px;
    padding: 0 22px;
    border: 0;
    border-radius: 4px;
    color: #d93025;
    background: transparent;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.google-actions button[type="submit"] {
    color: #ffffff;
    background: #e90000;
}

.application {
    padding: 52px 0 62px;
    background: #f7f2ef;
}

.application__wrap {
    width: min(850px, calc(100% - 48px));
}

.application__intro {
    margin-bottom: 26px;
    text-align: center;
}

.application__intro span {
    display: block;
    color: #9a8f87;
    font-size: 13px;
    font-weight: 700;
}

.application__intro h2 {
    margin: 7px 0 4px;
    color: var(--text);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 900;
    line-height: 1.35;
}

.application__intro h1 {
    margin: 7px 0 4px;
    color: var(--text);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 900;
    line-height: 1.35;
}

.application__intro p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.application-form {
    display: grid;
    gap: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 18px;
}

.form-field {
    display: grid;
    gap: 6px;
    color: #131b29;
    font-size: 13px;
    font-weight: 800;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 44px;
    padding: 9px 12px;
    border: 1px solid #ddd6d1;
    border-radius: 0;
    color: #172233;
    background: var(--white);
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(217, 173, 85, 0.18);
}

.checkbox-panel,
.upload-panel {
    margin: 0;
    padding: 18px;
    border: 1px solid #ddd6d1;
    background: rgba(255, 255, 255, 0.68);
}

.checkbox-panel legend,
.upload-panel legend {
    padding: 0 8px;
    color: var(--text);
    font-size: 14px;
    font-weight: 900;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 18px;
}

.checkbox-grid label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #1e2734;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.55;
}

.checkbox-grid input {
    margin-top: 4px;
    accent-color: var(--gold);
}

.upload-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 18px;
}

.upload-field {
    display: grid;
    gap: 6px;
    color: #1d2634;
    font-size: 13px;
    font-weight: 800;
}

.upload-field input {
    width: 100%;
    min-height: 38px;
    padding: 7px;
    border: 1px solid #ddd6d1;
    background: var(--white);
    font: inherit;
    font-size: 12px;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 4px;
}

.hp-field {
    position: absolute;
    inset-inline-start: 0;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.modal-open {
    overflow: hidden;
}

.callback-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 34px;
}

.callback-modal.is-open {
    display: flex;
}

.callback-modal__backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.7)),
        url("../images/hero-construction.png") center / cover no-repeat;
}

.callback-modal__panel {
    position: relative;
    width: min(980px, calc(100vw - 70px));
    min-height: 430px;
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    overflow: visible;
    color: #ffffff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.callback-modal__close {
    position: absolute;
    top: -56px;
    inset-inline-end: -6px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 0;
    color: #ffffff;
    background: transparent;
    font-size: 30px;
    cursor: pointer;
}

.callback-modal__visual {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    padding: 54px 48px;
    background:
        linear-gradient(rgba(5, 16, 27, 0.58), rgba(5, 16, 27, 0.72)),
        url("../images/service-workers.png") center / cover no-repeat;
}

.callback-modal__copy {
    width: min(390px, 100%);
}

.callback-modal__copy h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 900;
    line-height: 1.35;
}

.callback-modal__copy p {
    margin: 0;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    font-weight: 700;
}

.callback-form {
    min-height: 430px;
    display: grid;
    align-content: center;
    gap: 16px;
    padding: 52px 48px;
    background: rgba(226, 166, 43, 0.9);
    backdrop-filter: blur(2px);
}

.callback-form label {
    display: grid;
    gap: 6px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
}

.callback-form input,
.callback-form textarea {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border: 2px solid rgba(255, 255, 255, 0.32);
    border-radius: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    font: inherit;
    font-weight: 700;
    outline: 0;
}

.callback-form textarea {
    resize: vertical;
}

.callback-form input:focus,
.callback-form textarea:focus {
    border-color: rgba(255, 255, 255, 0.78);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.callback-form__status {
    display: none;
    padding: 10px 12px;
    color: #ffffff;
    background: rgba(6, 29, 51, 0.3);
    font-size: 13px;
    font-weight: 900;
}

.callback-form__status.is-visible {
    display: block;
}

.callback-form__status.is-error {
    background: rgba(117, 20, 20, 0.34);
}

.callback-form__status.is-success {
    background: rgba(8, 70, 42, 0.34);
}

.is-english .nav-links a::after {
    right: auto;
    left: 0;
}

.is-english .hero__media {
    background:
        linear-gradient(90deg, rgba(3, 19, 36, 0.98) 0%, rgba(4, 23, 41, 0.88) 42%, rgba(6, 27, 47, 0.58) 68%, rgba(7, 20, 33, 0.08) 100%),
        url("../images/hero-construction.png") right center / cover no-repeat;
}

.is-english .hero__content {
    justify-content: flex-start;
}

.is-english .service-card a i {
    transform: rotate(180deg);
}

.form-message {
    padding: 18px 20px;
    margin-bottom: 22px;
    border-radius: 8px;
    color: var(--white);
    background: var(--navy);
    font-weight: 800;
    text-align: center;
}

.application-page {
    min-height: calc(100vh - 114px);
}

.application__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.application__logo img {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 14px 34px rgba(7, 24, 40, 0.18);
}

.cta h2 {
    margin: 0 0 6px;
    font-size: clamp(25px, 3vw, 34px);
    font-weight: 900;
}

.cta p {
    margin: 0 0 22px;
    color: #1f2937;
    font-size: 18px;
    font-weight: 700;
}

.footer {
    color: rgba(255, 255, 255, 0.88);
    background: var(--navy-deep);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 54px;
    padding: 34px 0 26px;
}

.brand--footer .brand__mark,
.brand--footer small {
    color: var(--white);
}

.footer h3 {
    margin: 0 0 18px;
    color: var(--gold);
    font-size: 18px;
    font-weight: 900;
}

.footer p {
    margin: 15px 0 18px;
    max-width: 340px;
}

.footer a,
.footer span {
    display: block;
    margin-bottom: 9px;
    font-weight: 700;
}

.footer i {
    min-width: 20px;
    color: var(--white);
    margin-inline-start: 7px;
}

.footer__social {
    display: flex;
    gap: 20px;
}

.footer__bottom {
    padding: 16px;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
}

@media (max-width: 980px) {
    .container {
        width: min(100% - 32px, 760px);
    }

    .topbar__inner,
    .topbar__contact,
    .topbar__tools {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 18px;
        padding: 7px 0;
    }

    .navbar__inner {
        min-height: 70px;
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 10px 18px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .nav-actions {
        width: 100%;
        justify-content: center;
        order: 4;
        padding-bottom: 12px;
    }

    .nav-phone {
        display: none;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 12px 0;
    }

    .hero,
    .hero__content {
        min-height: 620px;
    }

    .hero__media {
        background:
            linear-gradient(rgba(3, 19, 36, 0.78), rgba(3, 19, 36, 0.94)),
            url("../images/hero-construction.png") center / cover no-repeat;
        transform: none;
    }

    .hero__copy {
        padding-block: 54px;
        text-align: center;
    }

    .hero__actions {
        justify-content: center;
    }

    .services-grid,
    .feature-grid,
    .steps,
    .stats,
    .footer__grid,
    .form-grid,
    .checkbox-grid,
    .upload-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps::before {
        display: none;
    }
}

@media (max-width: 620px) {
    .container {
        width: calc(100% - 26px);
    }

    .brand__mark {
        width: 70px;
        height: 52px;
    }

    .brand strong {
        font-size: 16px;
    }

    .topbar__social {
        display: none;
    }

    .topbar__contact {
        font-size: 12px;
    }

    .language-switcher {
        order: -1;
    }

    .hero,
    .hero__content {
        min-height: 650px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn {
        width: 100%;
        min-width: 0;
    }

    .callback-modal {
        padding: 18px;
    }

    .callback-modal__panel {
        width: 100%;
        max-height: calc(100vh - 46px);
        grid-template-columns: 1fr;
        overflow: auto;
    }

    .callback-modal__close {
        top: 8px;
        inset-inline-end: 8px;
        z-index: 2;
        background: rgba(0, 0, 0, 0.18);
    }

    .callback-modal__visual,
    .callback-form {
        min-height: auto;
        padding: 34px 24px;
    }

    .callback-modal__copy h2 {
        padding-inline-end: 46px;
        font-size: 26px;
    }

    .services-grid,
    .feature-grid,
    .steps,
    .stats,
    .footer__grid,
    .form-grid,
    .checkbox-grid,
    .upload-grid {
        grid-template-columns: 1fr;
    }

    .application {
        padding: 38px 0 46px;
    }

    .application__wrap {
        width: calc(100% - 26px);
    }

    .stat {
        border-inline-start: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }

    .stat:first-child {
        border-top: 0;
    }

    .section-title span {
        width: 42px;
    }

    .student-application {
        padding: 30px 0 42px;
    }

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

    .google-form-card {
        padding: 18px 16px;
    }

    .google-form-card--intro h1,
    .google-form-card--intro h2 {
        font-size: 21px;
    }

    .application__logo img,
    .google-logo {
        width: 128px;
        height: 128px;
    }

    .uni-logo {
        font-size: 27px;
    }

    .uni-logo span {
        font-size: 38px;
    }

    .google-actions {
        padding-inline: 2px;
    }
}
