:root {
    --page-background: #f5f8fb;
    --surface: #ffffff;
    --surface-soft: #eef7f6;
    --text: #183042;
    --text-soft: #5a6f7d;
    --primary: #0067c5;
    --primary-dark: #004b91;
    --accent: #16a98b;
    --border: #dce6ec;
    --shadow: 0 18px 45px rgba(20, 52, 74, 0.10);
    --radius: 22px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--page-background);
    line-height: 1.6;
}

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

a {
    color: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand img {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    object-fit: cover;
}

.brand-name {
    display: block;
    font-size: 1.12rem;
    font-weight: 700;
}

.brand-tagline {
    display: block;
    color: var(--text-soft);
    font-size: 0.82rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    font-weight: 700;
    font-size: 0.94rem;
}

.main-nav a:hover {
    color: var(--primary);
}

.admin-link {
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.hero {
    padding: 90px 0 70px;
    background:
        radial-gradient(circle at top right, rgba(22, 169, 139, 0.16), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
}

h1,
h2,
h3 {
    margin-top: 0;
    line-height: 1.18;
}

h1 {
    margin-bottom: 24px;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    max-width: 820px;
}

h2 {
    margin-bottom: 20px;
    font-size: clamp(2rem, 3vw, 3.1rem);
}

h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.hero-text {
    max-width: 720px;
    font-size: 1.2rem;
    color: var(--text-soft);
}

.hero-note {
    max-width: 720px;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 22px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.button-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 12px 28px rgba(0, 103, 197, 0.22);
}

.button-secondary {
    background: #ffffff;
    border: 1px solid var(--border);
}

.hero-image {
    background: var(--surface);
    padding: 18px;
    border-radius: 34px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 650px;
    justify-self: end;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 26px;
}

.section {
    padding: 82px 0;
}

.section-soft {
    background: var(--surface-soft);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

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

.card {
    position: relative;
    min-height: 260px;
    padding: 30px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.card p {
    color: var(--text-soft);
}

.step-number {
    display: inline-flex;
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    font-weight: 800;
}

.two-column {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.content-copy {
    color: var(--text-soft);
    font-size: 1.08rem;
}

.content-copy p:first-child {
    margin-top: 0;
}

.contact-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 44px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-panel p {
    max-width: 760px;
    color: var(--text-soft);
}

.site-footer {
    padding: 30px 0;
    color: #dceaf3;
    background: #102b3d;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-inner p {
    margin: 0;
}

@media (max-width: 920px) {
    .header-inner {
        padding: 18px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-grid,
    .two-column {
        grid-template-columns: 1fr;
    }

    .hero-image {
        max-width: 500px;
    }

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

    .contact-panel {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .main-nav {
        gap: 14px;
    }

    .brand-tagline {
        display: none;
    }

    .hero {
        padding-top: 58px;
    }

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

    .card {
        min-height: auto;
    }

    .contact-panel {
        padding: 28px;
    }

    .button {
        width: 100%;
    }
}

.registration-page {
    min-height: 70vh;
}

.registration-hero {
    padding: 68px 0 38px;
    background:
        radial-gradient(circle at top right, rgba(22, 169, 139, 0.14), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
}

.registration-heading {
    max-width: 850px;
}

.registration-heading h1 {
    margin-bottom: 18px;
    font-size: clamp(2.4rem, 4vw, 4rem);
}

.registration-heading p:last-child {
    max-width: 760px;
    color: var(--text-soft);
    font-size: 1.08rem;
}

.registration-section {
    padding-top: 36px;
}

.registration-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 34px;
    align-items: start;
}

.registration-form-card,
.registration-side-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.registration-form-card {
    padding: 34px;
}

.registration-form-card fieldset {
    margin: 0 0 34px;
    padding: 0;
    border: 0;
}

.registration-form-card legend {
    width: 100%;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-wide {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #bfd0da;
    border-radius: 12px;
    background: #ffffff;
    color: var(--text);
    font: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 3px solid rgba(0, 103, 197, 0.14);
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
}

.form-group small {
    color: var(--text-soft);
}

.checkbox-group {
    display: grid;
    gap: 14px;
}

.checkbox-row {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    align-items: start;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #f9fbfc;
}

.checkbox-row input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: wrap;
}

.form-actions button {
    border: 0;
    cursor: pointer;
    font: inherit;
}

.form-status-note {
    margin: 22px 0 0;
    padding: 14px 16px;
    border-left: 4px solid var(--accent);
    background: var(--surface-soft);
    color: var(--text-soft);
    font-size: 0.94rem;
}

.registration-side-card {
    position: sticky;
    top: 112px;
    padding: 28px;
}

.registration-side-card img {
    width: 110px;
    margin-bottom: 24px;
    border-radius: 22px;
}

.registration-side-card h2 {
    margin-bottom: 18px;
    font-size: 1.65rem;
}

.next-steps {
    margin: 0;
    padding-left: 22px;
}

.next-steps li {
    margin-bottom: 14px;
    padding-left: 5px;
}

.information-box {
    margin-top: 26px;
    padding: 18px;
    border-radius: 14px;
    background: var(--surface-soft);
    border: 1px solid #cfe3df;
}

.information-box p {
    margin-bottom: 0;
    color: var(--text-soft);
}

@media (max-width: 920px) {
    .registration-layout {
        grid-template-columns: 1fr;
    }

    .registration-side-card {
        position: static;
    }
}

@media (max-width: 620px) {
    .registration-form-card {
        padding: 24px;
    }

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

    .form-group-wide {
        grid-column: auto;
    }

    .form-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }
}


/* Testimonials */
#testimonials-live {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 380px));
    justify-content: center;
    gap: 28px;
}

.testimonial-card {
    width: 100%;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
}

.testimonial-card p {
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.7;
    color: #000000;
}

.testimonial-card strong {
    display: block;
    margin-top: 18px;
    font-size: clamp(14px, 1.2vw, 16px);
    color: #000000;
}

.testimonial-year {
    font-size: 13px;
    color: #333333;
}

@media (max-width: 600px) {

    #testimonials-live {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-height: auto;
    }

    .testimonial-card p {
        font-size: 14px;
    }

}



/* WRS FREE CANDIDATE OFFER */

.wrs-free-offer {
    background:
        linear-gradient(
            135deg,
            rgba(0, 155, 170, 0.08),
            rgba(255, 255, 255, 0.92)
        );
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.wrs-free-offer .container {
    max-width: 1180px;
}

.wrs-free-offer-card {
    max-width: 880px;
    margin: 0;
    padding: 2.25rem 2.5rem;
    border-left: 6px solid #00a7a7;
    border-radius: 14px;
    box-shadow:
        0 10px 28px rgba(13, 48, 67, 0.10);
}

.wrs-free-offer-card .eyebrow {
    color: #008f91;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.wrs-free-offer-card h2 {
    color: #0d3043;
    max-width: 760px;
    margin-bottom: 1rem;
}

.wrs-free-offer-card p {
    max-width: 790px;
    line-height: 1.65;
}

.wrs-free-offer-card strong {
    color: #0d3043;
}

@media (max-width: 700px) {
    .wrs-free-offer {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .wrs-free-offer-card {
        padding: 1.5rem;
        border-left-width: 4px;
    }
}


/* WRS JOURNEY AND ABOUT UPLIFT */

/* Shared page introduction */

.wrs-journey-page main,
.wrs-about-page main {
    background:
        linear-gradient(
            180deg,
            rgba(0, 160, 165, 0.05),
            rgba(255, 255, 255, 0.96) 360px
        );
}

/* JOURNEY */

.wrs-journey-page .section-heading {
    max-width: 820px;
    margin-bottom: 2.5rem;
}

.wrs-journey-step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 0 1.25rem;
    padding: 1.5rem 1.75rem;
    background: #ffffff;
    border: 1px solid rgba(13, 48, 67, 0.10);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(13, 48, 67, 0.07);
}

.wrs-step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #0577bd, #00a7a7);
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
}

.wrs-step-content h3 {
    margin-top: 0.15rem;
    margin-bottom: 0.5rem;
    color: #0d3043;
}

.wrs-step-content p {
    margin-bottom: 0;
    line-height: 1.65;
}

/* ABOUT */

.wrs-about-question {
    max-width: 880px;
    margin: 2rem 0;
    padding: 2rem 2.25rem;
    background:
        linear-gradient(
            135deg,
            rgba(0, 167, 167, 0.09),
            rgba(5, 119, 189, 0.05)
        );
    border-left: 5px solid #00a7a7;
    border-radius: 12px;
}

.wrs-about-question > p {
    margin-bottom: 0.8rem;
}

.wrs-question-answer {
    margin-top: 1.25rem;
    margin-bottom: 0 !important;
    color: #0d3043;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.45;
}

.wrs-capability-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    max-width: 820px;
    padding-left: 0;
    list-style: none;
}

.wrs-capability-list li {
    padding: 1rem 1.15rem;
    background: #ffffff;
    border: 1px solid rgba(13, 48, 67, 0.10);
    border-radius: 10px;
    box-shadow: 0 5px 16px rgba(13, 48, 67, 0.05);
}

.wrs-capability-list li::before {
    content: "✓";
    margin-right: 0.65rem;
    color: #00a7a7;
    font-weight: 700;
}

.wrs-mission {
    max-width: 880px;
    margin-top: 2.5rem;
    padding: 2rem 2.25rem;
    background: #0d3043;
    border-radius: 14px;
}

.wrs-mission .eyebrow {
    color: #62d6cf;
}

.wrs-mission p {
    color: #ffffff;
}

.wrs-mission-line {
    margin-bottom: 0 !important;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.45;
}

/* MOBILE */

@media (max-width: 700px) {

    .wrs-journey-step {
        grid-template-columns: 46px 1fr;
        gap: 0.9rem;
        padding: 1.25rem;
    }

    .wrs-step-number {
        width: 40px;
        height: 40px;
    }

    .wrs-capability-list {
        grid-template-columns: 1fr;
    }

    .wrs-about-question,
    .wrs-mission {
        padding: 1.5rem;
    }
}


/* WRS JOURNEY ABOUT FINAL CORRECTION */

/* JOURNEY — make the six cards read as a real process */

.wrs-journey-page .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 1050px;
    margin-top: 2rem;
}

.wrs-journey-page .steps-grid > article.card {
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(13, 48, 67, 0.10);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(13, 48, 67, 0.07);
}

.wrs-journey-page .wrs-journey-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1rem;
    height: 100%;
    max-width: none;
    margin: 0;
    padding: 1.5rem;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: #ffffff;
}

.wrs-journey-page .wrs-step-number {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #0577bd, #00a7a7);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
}

.wrs-journey-page .wrs-step-content h3 {
    margin-top: 0;
    margin-bottom: 0.6rem;
    color: #0d3043;
}

.wrs-journey-page .wrs-step-content p {
    margin: 0;
    line-height: 1.6;
}

/* ABOUT — stronger contrast without changing the message */

.wrs-about-question {
    margin: 2rem 0;
    padding: 2rem;
    background:
        linear-gradient(
            135deg,
            rgba(0, 167, 167, 0.10),
            rgba(5, 119, 189, 0.05)
        );
    border-left: 5px solid #00a7a7;
    border-radius: 12px;
}

.wrs-question-old {
    font-weight: 600;
    color: #506674;
}

.wrs-question-answer {
    margin-bottom: 0;
    color: #0d3043;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.45;
}

.wrs-mission {
    margin-top: 2.5rem;
    padding: 2rem;
    background: #0d3043;
    border-radius: 14px;
}

.wrs-mission .eyebrow {
    color: #62d6cf;
}

.wrs-mission p {
    color: #ffffff;
}

.wrs-mission-line {
    margin-bottom: 0;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.45;
}

@media (max-width: 900px) {
    .wrs-journey-page .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .wrs-journey-page .steps-grid {
        grid-template-columns: 1fr;
    }

    .wrs-about-question,
    .wrs-mission {
        padding: 1.5rem;
    }
}


/* WRS EMPLOYER REGISTRATION UPLIFT */

.wrs-registration-page .registration-hero {
    background:
        linear-gradient(
            135deg,
            rgba(0, 167, 167, 0.08),
            rgba(5, 119, 189, 0.04)
        );
}

.wrs-registration-page .registration-heading {
    max-width: 900px;
}

.wrs-registration-page .registration-heading h1 {
    color: #0d3043;
    max-width: 760px;
}

.wrs-registration-page .registration-form-card {
    border-top: 5px solid #00a7a7;
    box-shadow: 0 10px 30px rgba(13, 48, 67, 0.08);
}

.wrs-registration-pack-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    padding: 0;
    margin: 1.5rem 0 2rem;
    list-style: none;
}

.wrs-registration-pack-list li {
    padding: 1.1rem 1.2rem;
    background: #ffffff;
    border: 1px solid rgba(13, 48, 67, 0.10);
    border-radius: 10px;
    box-shadow: 0 5px 16px rgba(13, 48, 67, 0.05);
}

.wrs-registration-pack-list li::before {
    content: "✓";
    margin-right: 0.6rem;
    color: #00a7a7;
    font-weight: 700;
}

.wrs-registration-important {
    border-left: 5px solid #00a7a7;
    background: rgba(0, 167, 167, 0.06);
}

.wrs-registration-next {
    margin-top: 1.5rem;
}

.wrs-registration-next > strong {
    display: block;
    margin-bottom: 1.25rem;
    color: #0d3043;
    font-size: 1.15rem;
}

.wrs-registration-steps {
    display: grid;
    gap: 0.8rem;
}

.wrs-registration-steps > div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 0.9rem;
    align-items: start;
}

.wrs-registration-steps span {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #0577bd, #00a7a7);
    color: #ffffff;
    font-weight: 700;
}

.wrs-registration-steps p {
    margin: 0.4rem 0 0;
    line-height: 1.55;
}

@media (max-width: 750px) {
    .wrs-registration-pack-list {
        grid-template-columns: 1fr;
    }
}
