:root {
    --et-purple-dark: #914ada;
    --et-purple: #b15bfd;
    --et-purple-light: #c788ff;
    --et-green: #91d343;
    --et-green-dark: #79bb2f;
    --et-gray-dark: #2f3b4d;
    --et-gray: #3b485a;
    --et-gray-field: #445266;
    --et-light: #f8f9fc;
    --et-text: #37373c;
    --et-white: #ffffff;
    --et-border: #e2e5ec;
    --et-danger: #b42318;
    --et-shadow: 0 18px 50px rgba(47, 59, 77, 0.13);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 76px;
}

body.electrician-landing-page {
    margin: 0;
    background: var(--et-white);
    color: var(--et-text);
    font-family: "Open Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.electrician-landing-page *,
.electrician-landing-page *::before,
.electrician-landing-page *::after {
    box-sizing: border-box;
}

.electrician-landing-page h1,
.electrician-landing-page h2,
.electrician-landing-page h3,
.electrician-landing-page p {
    margin-top: 0;
}

.electrician-landing-page h1,
.electrician-landing-page h2,
.electrician-landing-page h3 {
    font-family: "Montserrat", sans-serif;
}

.landing-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--et-purple-dark);
    box-shadow: 0 4px 18px rgba(47, 59, 77, 0.12);
}

.landing-nav-inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.landing-brand {
    display: inline-flex;
    align-items: center;
}

.landing-brand img {
    display: block;
    width: 51px;
    height: 46px;
    object-fit: contain;
}

.landing-nav-cta,
.landing-primary-cta,
.application-next,
.application-submit {
    border: 1px solid var(--et-green);
    border-radius: 999px;
    background: var(--et-green);
    color: var(--et-white);
    font: 700 0.86rem/1 "Montserrat", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.landing-nav-cta {
    padding: 0.9rem 1.25rem;
}

.landing-primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 1rem 1.75rem;
}

.landing-nav-cta:hover,
.landing-primary-cta:hover,
.application-next:hover,
.application-submit:hover {
    color: var(--et-white);
    background: var(--et-green-dark);
    border-color: var(--et-green-dark);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(145, 211, 67, 0.22);
}

.electrician-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 24%, rgba(199, 136, 255, 0.26), transparent 25%),
        linear-gradient(135deg, #6f31ad 0%, var(--et-purple-dark) 52%, #4e1988 100%);
    color: var(--et-white);
}

.electrician-hero::after {
    content: "";
    position: absolute;
    right: -140px;
    bottom: -220px;
    width: 520px;
    height: 520px;
    border: 90px solid rgba(255, 255, 255, 0.045);
    border-radius: 50%;
}

.hero-grid {
    position: relative;
    z-index: 1;
    min-height: 640px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 4rem;
    align-items: center;
    padding: 5.5rem 0 5rem;
}

.hero-copy {
    max-width: 760px;
}

.hero-kicker,
.section-eyebrow {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: var(--et-purple);
    font: 700 0.78rem/1.2 "Montserrat", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-kicker {
    color: #dcb8ff;
}

.hero-copy h1 {
    margin-bottom: 1.15rem;
    color: var(--et-white);
    font-size: clamp(2.6rem, 5vw, 4.75rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.hero-copy h1 span {
    display: block;
    color: #bffd78;
}

.hero-subtitle {
    max-width: 650px;
    margin-bottom: 1.5rem;
    color: var(--et-white);
    font-size: 1.18rem;
    line-height: 1.65;
}

.hero-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.85rem;
}

.hero-benefits-list li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.85rem;
    color: rgba(255, 255, 255, 0.96);
    font-size: 1rem;
    line-height: 1.55;
}

.hero-benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.32rem;
    color: #bffd78;
    font-weight: 700;
}

.hero-income-note {
    max-width: 600px;
    margin: 0.9rem 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    line-height: 1.45;
}

.hero-work-model {
    max-width: 650px;
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(47, 59, 77, 0.22);
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.9rem;
    line-height: 1.5;
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
}

.hero-salary-card {
    width: min(100%, 390px);
    padding: 2.2rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 22px;
    background: rgba(47, 59, 77, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 28px 70px rgba(39, 14, 70, 0.3);
}

.hero-salary-card > span {
    display: block;
    color: rgba(255, 255, 255, 0.9);
}

.salary-card-label {
    margin-bottom: 0.4rem;
    font-size: 0.86rem;
}

.hero-salary-card > strong {
    display: block;
    color: #bffd78;
    font: 700 clamp(2.2rem, 4vw, 3.45rem)/1 "Montserrat", sans-serif;
    letter-spacing: -0.05em;
}

.salary-card-net {
    margin-top: 0.3rem;
    font: 700 1.25rem/1.3 "Montserrat", sans-serif;
}

.salary-card-divider {
    height: 1px;
    margin: 1.6rem 0;
    background: rgba(255, 255, 255, 0.18);
}

.hero-salary-card .salary-card-divider ~ span {
    padding: 0.46rem 0;
    font-weight: 600;
}

.key-facts {
    padding: 1.5rem 0 1.2rem;
    background: var(--et-gray-dark);
}

.key-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.key-fact {
    min-height: 78px;
    padding: 0.6rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.key-fact:last-child {
    border-right: 0;
}

.key-fact strong {
    color: var(--et-purple-light);
    font: 700 1.25rem/1.3 "Montserrat", sans-serif;
}

.key-fact span {
    margin-top: 0.22rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.key-facts-note {
    margin: 0.7rem 0 0;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    font-size: 0.68rem;
}

.landing-section {
    padding: 5.5rem 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 2.75rem;
    text-align: center;
}

.section-heading h2,
.application-heading h2,
.trust-copy h2,
.final-cta-inner h2,
.requirements-grid h2 {
    margin-bottom: 0.85rem;
    color: var(--et-gray);
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.benefits-section {
    background: var(--et-light);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.3rem;
}

.benefit-card {
    height: 100%;
    padding: 1.8rem;
    border: 1px solid var(--et-border);
    border-radius: 16px;
    background: var(--et-white);
    box-shadow: 0 10px 30px rgba(47, 59, 77, 0.06);
}

.benefit-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(177, 91, 253, 0.12);
    color: var(--et-purple);
    font: 700 1rem/1 "Montserrat", sans-serif;
}

.benefit-card h3 {
    margin-bottom: 0.7rem;
    color: var(--et-gray);
    font-size: 1.08rem;
    line-height: 1.4;
}

.benefit-card p {
    margin-bottom: 0;
    color: #5b6170;
    font-size: 0.9rem;
    line-height: 1.65;
}

.requirements-section {
    background: linear-gradient(135deg, var(--et-gray-dark), var(--et-gray));
}

.requirements-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.requirements-grid h2,
.requirements-intro {
    color: var(--et-white);
}

.section-eyebrow-light {
    color: var(--et-purple-light);
}

.requirements-intro {
    max-width: 480px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.03rem;
    line-height: 1.7;
}

.requirements-card {
    padding: 2rem;
    border-radius: 18px;
    background: var(--et-white);
    box-shadow: var(--et-shadow);
}

.requirements-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.6rem;
}

.requirements-card li {
    position: relative;
    padding: 0.65rem 0 0.65rem 2rem;
    border-bottom: 1px solid #eef0f4;
    color: var(--et-text);
    line-height: 1.5;
}

.requirements-card li:last-child {
    border-bottom: 0;
}

.requirements-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--et-green-dark);
    font-weight: 700;
}

.application-section {
    padding: 6rem 0;
    background: var(--et-light);
}

.application-heading {
    max-width: 740px;
    margin: 0 auto 2.25rem;
    text-align: center;
}

.application-heading p {
    margin-bottom: 0;
    color: #666d79;
    font-size: 1rem;
}

.application-shell {
    max-width: 860px;
    margin: 0 auto;
    border: 1px solid var(--et-border);
    border-radius: 20px;
    background: var(--et-white);
    box-shadow: var(--et-shadow);
    overflow: hidden;
}

.application-progress {
    padding: 1.5rem 2rem 1.35rem;
    background: var(--et-gray-dark);
    color: var(--et-white);
}

.progress-copy {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.8rem;
    font-size: 0.84rem;
}

.progress-copy strong {
    font-family: "Montserrat", sans-serif;
}

.progress-copy span {
    color: rgba(255, 255, 255, 0.7);
}

.progress-track {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.progress-bar-value {
    width: 25%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--et-purple-light), var(--et-green));
    transition: width 0.25s ease;
}

#electrician-application-form {
    padding: 2rem;
}

.application-step[hidden] {
    display: none !important;
}

.step-heading {
    margin-bottom: 1.6rem;
}

.step-heading h3 {
    margin-bottom: 0.45rem;
    color: var(--et-gray);
    font-size: 1.45rem;
}

.step-heading p {
    margin-bottom: 0;
    color: #747a85;
    font-size: 0.9rem;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem 1.25rem;
}

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

.landing-field label,
.work-conditions legend {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--et-gray);
    font: 700 0.82rem/1.35 "Montserrat", sans-serif;
}

.landing-field label span,
.work-conditions legend span {
    color: var(--et-danger);
}

.landing-field input,
.landing-field select,
.landing-field textarea,
.condition-row select {
    width: 100%;
    border: 1px solid #d7dce4;
    border-radius: 9px;
    background: var(--et-white);
    color: var(--et-text);
    font: 400 0.92rem/1.4 "Open Sans", sans-serif;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.landing-field input,
.landing-field select,
.condition-row select {
    min-height: 48px;
    padding: 0.7rem 0.85rem;
}

.landing-field textarea {
    min-height: 112px;
    padding: 0.8rem 0.85rem;
    resize: vertical;
}

.landing-field input:focus,
.landing-field select:focus,
.landing-field textarea:focus,
.condition-row select:focus {
    outline: 0;
    border-color: var(--et-purple);
    box-shadow: 0 0 0 3px rgba(177, 91, 253, 0.12);
}

.landing-field input.is-invalid,
.landing-field select.is-invalid,
.landing-field textarea.is-invalid,
.condition-row select.is-invalid {
    border-color: var(--et-danger);
}

.field-hint {
    margin-top: 0.38rem;
    color: #7b818b;
    font-size: 0.75rem;
}

.field-error {
    min-height: 0;
    margin-top: 0.35rem;
    color: var(--et-danger);
    font-size: 0.76rem;
    line-height: 1.35;
}

.is-hidden {
    display: none !important;
}

.language-message {
    margin-top: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 9px;
    background: #f3e8ff;
    color: #5e2e8b;
    font-size: 0.82rem;
    line-height: 1.5;
}

.language-message.language-lead {
    background: #fff5df;
    color: #6c4d10;
}

.work-conditions {
    margin: 1.7rem 0 0;
    padding: 0;
    border: 0;
}

.condition-list {
    border: 1px solid var(--et-border);
    border-radius: 12px;
    overflow: hidden;
}

.condition-row {
    margin: 0;
    padding: 0.85rem 1rem;
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 1rem;
    align-items: center;
    border-bottom: 1px solid var(--et-border);
}

.condition-row:last-child {
    border-bottom: 0;
}

.condition-row span {
    color: var(--et-text);
    font-size: 0.9rem;
    line-height: 1.45;
}

.condition-row select {
    min-height: 42px;
}

.cv-upload-box {
    padding: 1.8rem;
    border: 2px dashed #c9cfd9;
    border-radius: 14px;
    background: #fbfbfd;
    text-align: center;
    transition: border-color 0.18s ease, background-color 0.18s ease;
}

.cv-upload-box.is-dragging {
    border-color: var(--et-purple);
    background: #f8f0ff;
}

.cv-upload-box input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.cv-upload-box label {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.upload-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--et-purple);
    color: var(--et-white);
    font: 700 1.4rem/1 "Montserrat", sans-serif;
}

.cv-upload-box label strong {
    color: var(--et-gray);
    font: 700 1rem/1.4 "Montserrat", sans-serif;
}

.cv-upload-box label span:last-child {
    margin-top: 0.3rem;
    color: #777e89;
    font-size: 0.78rem;
}

.cv-upload-box > p {
    margin: 0.65rem 0 0;
    color: var(--et-purple-dark);
    font-weight: 700;
    font-size: 0.82rem;
}

.consent-group {
    margin-top: 1.4rem;
}

.landing-checkbox {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #575e69;
    font-size: 0.8rem;
    line-height: 1.5;
    cursor: pointer;
}

.landing-checkbox input {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin-top: 0.1rem;
    accent-color: var(--et-purple);
}

.landing-checkbox a {
    color: var(--et-purple-dark);
    text-decoration: underline;
}

.submission-message {
    margin-top: 1.2rem;
    padding: 1rem 1.1rem;
    border-radius: 10px;
    background: #edf8e2;
    color: #315b0b;
    font-size: 0.88rem;
    line-height: 1.55;
}

.submission-message.is-error {
    background: #fff0ef;
    color: #8b1e17;
}

.application-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.application-back,
.application-next,
.application-submit {
    min-height: 50px;
    padding: 0.9rem 1.45rem;
}

.application-back {
    border: 1px solid #cdd2da;
    border-radius: 999px;
    background: var(--et-white);
    color: var(--et-gray);
    font: 700 0.84rem/1 "Montserrat", sans-serif;
    cursor: pointer;
}

.application-next,
.application-submit {
    margin-left: auto;
}

.application-submit[disabled] {
    opacity: 0.65;
    cursor: wait;
    transform: none;
}

.process-section {
    background: var(--et-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.process-grid article {
    position: relative;
    padding: 1.7rem 1.6rem;
    border: 1px solid var(--et-border);
    border-radius: 14px;
}

.process-grid article > span {
    width: 38px;
    height: 38px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--et-purple);
    color: var(--et-white);
    font: 700 0.9rem/1 "Montserrat", sans-serif;
}

.process-grid h3 {
    margin-bottom: 0.55rem;
    color: var(--et-gray);
    font-size: 1.04rem;
}

.process-grid p {
    margin-bottom: 0;
    color: #666d77;
    font-size: 0.87rem;
    line-height: 1.6;
}

.trust-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #6e32aa 0%, var(--et-purple-dark) 100%);
}

.trust-copy {
    max-width: 800px;
    margin: 0 auto 2.2rem;
    text-align: center;
}

.trust-copy h2,
.trust-copy p {
    color: var(--et-white);
}

.trust-copy p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.trust-item {
    min-height: 170px;
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.09);
    color: var(--et-white);
    text-align: center;
    text-decoration: none;
}

.trust-item:hover {
    color: var(--et-white);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.14);
}

.trust-item img {
    max-width: 150px;
    max-height: 86px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.trust-item span {
    font-size: 0.82rem;
    font-weight: 700;
}

.final-cta-section {
    padding: 3.5rem 0;
    background: var(--et-gray-dark);
}

.final-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.final-cta-inner h2 {
    margin-bottom: 0.4rem;
    color: var(--et-white);
    font-size: 2rem;
}

.final-cta-inner p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
}

.landing-footer {
    padding: 1.4rem 0;
    background: #252e3c;
    color: rgba(255, 255, 255, 0.68);
}

.landing-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.landing-footer p {
    margin: 0;
    color: inherit;
    font-size: 0.76rem;
}

.landing-footer nav {
    display: flex;
    gap: 1.2rem;
}

.landing-footer a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.76rem;
}

@media (max-width: 991px) {
    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 4.7rem 0 4rem;
    }

    .hero-copy {
        max-width: 760px;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .hero-salary-card {
        max-width: 520px;
    }

    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    html {
        scroll-padding-top: 64px;
    }

    .landing-nav-inner {
        min-height: 62px;
    }

    .landing-brand img {
        width: 45px;
        height: 41px;
    }

    .landing-nav-cta {
        padding: 0.78rem 1rem;
        font-size: 0.72rem;
    }

    .hero-grid {
        gap: 1.9rem;
        padding: 3.2rem 0 3.1rem;
    }

    .hero-copy h1 {
        font-size: clamp(2.25rem, 11vw, 3.5rem);
        line-height: 1.03;
    }

    .hero-subtitle {
        font-size: 1.02rem;
    }

    .hero-benefits-list li {
        font-size: 0.9rem;
    }

    .landing-primary-cta {
        width: 100%;
    }

    .hero-salary-card {
        width: 100%;
        padding: 1.6rem;
    }

    .key-facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .key-fact {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .key-fact:nth-child(2) {
        border-right: 0;
    }

    .key-fact:nth-child(3),
    .key-fact:nth-child(4) {
        border-bottom: 0;
    }

    .landing-section,
    .application-section,
    .trust-section {
        padding: 4rem 0;
    }

    .benefit-grid,
    .process-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        margin-bottom: 2rem;
    }

    .section-heading h2,
    .application-heading h2,
    .trust-copy h2,
    .requirements-grid h2 {
        font-size: 2rem;
    }

    .application-shell {
        border-radius: 14px;
    }

    .application-progress,
    #electrician-application-form {
        padding-left: 1.15rem;
        padding-right: 1.15rem;
    }

    .field-grid {
        grid-template-columns: 1fr;
    }

    .field-full {
        grid-column: auto;
    }

    .condition-row {
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }

    .condition-row select {
        width: 100%;
    }

    .application-actions {
        flex-wrap: wrap;
    }

    .application-back,
    .application-next,
    .application-submit {
        min-width: 125px;
    }

    .final-cta-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .landing-footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-grid {
        padding-top: 2.6rem;
    }

    .hero-copy h1 {
        font-size: 2.4rem;
    }

    .hero-work-model {
        font-size: 0.82rem;
    }

    .key-fact {
        padding-left: 0.55rem;
        padding-right: 0.55rem;
    }

    .key-fact strong {
        font-size: 1.05rem;
    }

    .benefit-card,
    .requirements-card {
        padding: 1.35rem;
    }

    #electrician-application-form {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .progress-copy {
        font-size: 0.77rem;
    }

    .cv-upload-box {
        padding: 1.35rem 1rem;
    }

    .application-back,
    .application-next,
    .application-submit {
        width: 100%;
        margin-left: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .landing-nav-cta,
    .landing-primary-cta,
    .application-next,
    .application-submit,
    .progress-bar-value {
        transition: none;
    }
}


/* ==========================================================
   EAST TALENT LOGO
   Referenzgröße: personalvermittlung-osteuropa.com
   ========================================================== */

.landing-brand {
    display: flex;
    align-items: center;
}

.landing-brand img {
    width: 130px !important;
    height: 119px !important;
    max-width: none !important;
    object-fit: contain;
    display: block;
}

@media (max-width: 767px) {
    .landing-brand img {
        width: 130px !important;
        height: 119px !important;
        max-width: none !important;
    }
}


/* ==========================================================
   EAST TALENT FOOTER TRUST LOGOS
   ========================================================== */

.footer-trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 34px;
    margin: 32px auto 10px;
}

.footer-trust-logos img {
    display: block;
    width: auto;
    max-width: 180px;
    max-height: 90px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .footer-trust-logos {
        gap: 24px;
        margin-top: 28px;
    }

    .footer-trust-logos img {
        max-width: 145px;
        max-height: 75px;
    }
}
