/* =========================================================
   SKILLSCAN HOMEPAGE
   Modern AI Career Intelligence Design
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: #ffffff;
    color: #111c38;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 11px 21px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    border: 1px solid transparent;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: #1769e0;
    color: #ffffff;

    box-shadow:
        0 8px 20px rgba(23, 105, 224, 0.18);
}

.btn-primary:hover {
    background: #0f55ba;

    box-shadow:
        0 10px 24px rgba(23, 105, 224, 0.25);
}

.btn-outline {
    background: #ffffff;
    color: #1769e0;
    border-color: #1769e0;
}

.btn-outline:hover {
    background: #f3f7ff;
}

.btn-large {
    padding: 14px 27px;
    font-size: 15px;
}

.btn-purple {
    background: #6535df;
    color: #ffffff;

    box-shadow:
        0 8px 20px rgba(101, 53, 223, 0.18);
}

.btn-purple:hover {
    background: #5227c8;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.97);

    border-bottom: 1px solid #edf0f6;

    backdrop-filter: blur(12px);
}

.navbar {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


/* LOGO */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #0d1a39;

    font-size: 25px;
    font-weight: 800;

    letter-spacing: -0.8px;

    white-space: nowrap;
}

.logo > span:last-child {
    font-weight: 800;
}

.logo-highlight {
    color: #1769e0;
}

.logo-mark {
    width: 37px;
    height: 37px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #1769e0,
            #3159d9
        );

    color: #ffffff;

    font-size: 25px;
    font-weight: 400;

    box-shadow:
        0 6px 16px rgba(23, 105, 224, 0.20);
}


/* NAVIGATION */

.nav-links {
    display: flex;
    align-items: center;

    gap: 27px;

    margin-left: auto;
}

.nav-links a {
    position: relative;

    color: #27324b;

    font-size: 13px;
    font-weight: 600;

    padding: 25px 0;
}

.nav-links a:hover {
    color: #1769e0;
}

.nav-links a.active {
    color: #1769e0;
}

.nav-links a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 10px;

    height: 2px;

    background: #1769e0;

    border-radius: 5px;
}


/* HEADER BUTTONS */

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    padding: 30px 0 34px;

    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(48, 117, 244, 0.08),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #f9fbff 0%,
            #ffffff 100%
        );

    overflow: hidden;
}

.hero-grid {
    display: grid;

    grid-template-columns:
        minmax(360px, 0.82fr)
        minmax(560px, 1.18fr);

    align-items: center;

    gap: 42px;
}


/* HERO LEFT */

.hero-left {
    padding: 35px 0 25px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;

    padding: 6px 13px;

    margin-bottom: 18px;

    border-radius: 20px;

    background: #edf4ff;

    color: #1769e0;

    font-size: 12px;
    font-weight: 700;
}

.hero-left h1 {
    max-width: 540px;

    color: #0e1936;

    font-size: clamp(43px, 4.7vw, 61px);

    line-height: 1.08;

    letter-spacing: -2.2px;

    margin-bottom: 20px;
}

.hero-left h1 span {
    display: inline;

    color: #1769e0;
}

.hero-description {
    max-width: 515px;

    color: #536079;

    font-size: 16px;

    line-height: 1.65;

    margin-bottom: 25px;
}

.hero-primary-action {
    margin-top: 3px;
}

.hero-free-note {
    margin-top: 9px;
    margin-left: 14px;

    color: #1769e0;

    font-size: 12px;
    font-weight: 600;
}


/* =========================================================
   HERO RIGHT
========================================================= */

.hero-right {
    position: relative;

    padding-top: 2px;
}


/* TODAY'S OFFER */

.offer-banner {
    width: min(100%, 390px);

    margin-left: auto;
    margin-bottom: 10px;

    min-height: 46px;

    display: flex;
    align-items: center;

    gap: 11px;

    padding: 7px 13px;

    border: 1px solid #f5d28b;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #fff9e9,
            #fffdf7
        );

    color: #24304b;
}

.offer-icon {
    width: 31px;
    height: 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
}

.offer-banner div:nth-child(2) {
    display: flex;
    flex-direction: column;

    line-height: 1.2;
}

.offer-banner strong {
    color: #ed5a24;

    font-size: 13px;
}

.offer-banner small {
    color: #536079;

    font-size: 10px;

    margin-top: 3px;
}

.offer-arrow {
    margin-left: auto;

    color: #f09a19;

    font-size: 20px;
}


/* =========================================================
   MATCH PREVIEW
========================================================= */

.match-preview-card {
    position: relative;

    padding: 20px 21px 18px;

    border: 1px solid #e3eaf6;

    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 15px 40px rgba(42, 76, 132, 0.10);
}

.match-card-title {
    color: #17213d;

    font-size: 14px;
    font-weight: 800;

    margin-bottom: 15px;
}


/* TOP ROLES */

.match-top {
    display: grid;

    grid-template-columns:
        1fr
        42px
        1fr;

    align-items: center;

    gap: 8px;
}

.match-role-card {
    min-height: 65px;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 10px 13px;

    border-radius: 9px;
}

.match-role-card.profession {
    background: #effaf5;
}

.match-role-card.job {
    background: #f1f6ff;
}

.match-role-icon {
    width: 31px;
    height: 31px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #ffffff;

    font-size: 17px;
}

.match-role-card.profession
.match-role-icon {
    color: #15a96b;
}

.match-role-card.job
.match-role-icon {
    color: #1769e0;
}

.match-role-card small {
    display: block;

    color: #56627a;

    font-size: 9px;

    margin-bottom: 2px;
}

.match-role-card strong {
    display: block;

    color: #17213d;

    font-size: 12px;
}

.match-arrow {
    text-align: center;

    color: #7385a5;

    font-size: 23px;
}


/* SCORE */

.match-score-area {
    position: absolute;

    right: 21px;
    top: 106px;

    width: 155px;

    text-align: center;
}

.score-label {
    position: absolute;

    top: -33px;
    left: 0;
    right: 0;

    color: #17213d;

    font-size: 12px;
    font-weight: 700;
}

.score-circle {
    width: 118px;
    height: 118px;

    margin: 0 auto;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        conic-gradient(
            #13ad6b 0deg 313deg,
            #c8dafd 313deg 360deg
        );

    transform: rotate(-8deg);
}

.score-inner {
    width: 88px;
    height: 88px;

    border-radius: 50%;

    background: #ffffff;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    transform: rotate(8deg);
}

.score-inner strong {
    color: #17213d;

    font-size: 31px;

    line-height: 1;
}

.score-inner span {
    color: #17213d;

    font-size: 9px;
    font-weight: 700;

    margin-top: 5px;
}


/* MATCH FACTORS */

.match-factors {
    width: calc(100% - 190px);

    margin-top: 16px;

    padding-top: 7px;
}

.factor {
    margin-bottom: 9px;
}

.factor-header {
    display: flex;
    justify-content: space-between;

    margin-bottom: 4px;

    color: #26324d;

    font-size: 9px;
}

.factor-header strong {
    font-size: 9px;
}

.factor-bar {
    width: 100%;
    height: 6px;

    overflow: hidden;

    border-radius: 10px;

    background: #e9eef6;
}

.factor-bar span {
    display: block;

    height: 100%;

    border-radius: 10px;

    background: #1769e0;
}

.factor:nth-child(1) .factor-bar span {
    background: #18ad70;
}

.factor:nth-child(3) .factor-bar span {
    background: #7040dc;
}

.factor:nth-child(4) .factor-bar span {
    background: #f08a32;
}


/* MATCH BUTTON */

.match-card-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: max-content;

    margin: 13px auto 0;

    padding: 7px 17px;

    border: 1px solid #1769e0;

    border-radius: 6px;

    color: #1769e0;

    background: #ffffff;

    font-size: 11px;
    font-weight: 700;

    transition: all 0.2s ease;
}

.match-card-button:hover {
    background: #edf4ff;

    transform: translateY(-1px);
}

.match-card-button span {
    margin-left: 7px;

    font-size: 15px;
}


/* =========================================================
   TRUST STRIP
========================================================= */

.hero-trust-strip {
    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr
        1.45fr;

    align-items: center;

    margin-top: 13px;

    padding: 10px 15px;

    border: 1px solid #e6ecf5;

    border-radius: 11px;

    background: #ffffff;

    box-shadow:
        0 6px 20px rgba(37, 70, 120, 0.05);
}

.trust-item {
    min-height: 47px;

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 4px 12px;

    border-right: 1px solid #edf0f5;
}

.trust-item:last-child {
    border-right: none;
}

.trust-icon {
    width: 31px;
    height: 31px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #edf4ff;

    color: #1769e0;

    font-size: 15px;
    font-weight: 800;
}

.trust-item strong {
    display: block;

    color: #17213d;

    font-size: 10px;

    line-height: 1.3;
}

.trust-item span {
    display: block;

    color: #667085;

    font-size: 8px;

    margin-top: 2px;
}

.ats-service {
    display: grid;

    grid-template-columns:
        31px
        1fr
        auto;

    gap: 9px;

    align-items: center;
}

.ats-service .trust-icon {
    color: #6535df;
    background: #f1edff;
}

.ats-button {
    padding: 7px 11px;

    border: 1px solid #1769e0;

    border-radius: 6px;

    color: #1769e0;

    background: #ffffff;

    font-size: 9px;
    font-weight: 700;

    white-space: nowrap;
}

.ats-button:hover {
    background: #edf4ff;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
    padding: 72px 0;
}

.section-heading {
    max-width: 690px;

    margin: 0 auto 44px;

    text-align: center;
}

.section-heading h2 {
    color: #111c38;

    font-size: 31px;

    line-height: 1.2;

    letter-spacing: -0.8px;

    margin-bottom: 10px;
}

.section-heading h2 span {
    color: #1769e0;
}

.section-heading p {
    color: #68748b;

    font-size: 14px;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.how-it-works {
    background: #ffffff;
}

.process-steps {
    display: flex;
    align-items: flex-start;

    gap: 8px;
}

.process-step {
    flex: 1;

    text-align: center;

    padding: 0 8px;
}

.process-icon {
    width: 57px;
    height: 57px;

    margin: 0 auto 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #edf4ff;

    border: 1px solid #d9e6fc;

    color: #1769e0;

    font-size: 19px;
    font-weight: 800;

    box-shadow:
        0 7px 18px rgba(23, 105, 224, 0.08);
}

.process-icon.green {
    background: #effaf5;
    color: #18a86c;
    border-color: #d8f2e7;
}

.process-icon.purple {
    background: #f2efff;
    color: #7040dc;
    border-color: #e5ddff;
}

.process-icon.orange {
    background: #fff6eb;
    color: #ee891d;
    border-color: #ffe5c5;
}

.process-icon.pink {
    background: #fff0f7;
    color: #e83b85;
    border-color: #ffdceb;
}

.process-step h3 {
    color: #18223d;

    font-size: 13px;

    margin-bottom: 7px;
}

.process-step p {
    max-width: 165px;

    margin: 0 auto;

    color: #68748b;

    font-size: 10px;

    line-height: 1.55;
}

.process-line {
    flex: 0.25;

    height: 1px;

    margin-top: 28px;

    background: #d9e2f1;

    position: relative;
}

.process-line::after {
    content: "→";

    position: absolute;

    right: -4px;
    top: -11px;

    color: #9aaac2;

    font-size: 17px;
}


/* =========================================================
   BENEFITS SECTION
========================================================= */

.benefits-section {
    padding-top: 55px;

    background:
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #ffffff 100%
        );
}

.benefits-grid {
    display: grid;

    grid-template-columns:
        0.78fr
        1.22fr;

    gap: 22px;

    align-items: stretch;
}


/* BENEFITS CARD */

.benefits-card {
    padding: 24px;

    border: 1px solid #e5ebf4;

    border-radius: 13px;

    background: #ffffff;

    box-shadow:
        0 8px 25px rgba(40, 71, 120, 0.05);
}

.benefits-card h2 {
    color: #17213d;

    font-size: 21px;

    line-height: 1.2;

    margin-bottom: 21px;
}

.benefits-card h2 span {
    color: #1769e0;
}

.benefit-item {
    display: flex;

    gap: 10px;

    margin-bottom: 14px;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    width: 28px;
    height: 28px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 800;
}

.benefit-icon.green {
    background: #e8f8f0;
    color: #12a568;
}

.benefit-icon.blue {
    background: #eaf2ff;
    color: #1769e0;
}

.benefit-icon.purple {
    background: #f0ebff;
    color: #6535df;
}

.benefit-icon.orange {
    background: #fff3e4;
    color: #e98920;
}

.benefit-icon.pink {
    background: #fff0f6;
    color: #df3d82;
}

.benefit-item strong {
    display: block;

    color: #17213d;

    font-size: 11px;

    margin-bottom: 2px;
}

.benefit-item p {
    color: #68748b;

    font-size: 9px;

    line-height: 1.45;
}


/* =========================================================
   ATS CARD
========================================================= */

.ats-card {
    position: relative;

    display: flex;

    min-height: 340px;

    padding: 25px 26px;

    overflow: hidden;

    border: 1px solid #e4e0f8;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fbfaff 100%
        );

    box-shadow:
        0 8px 25px rgba(67, 46, 137, 0.05);
}

.ats-content {
    position: relative;
    z-index: 2;

    width: 58%;
}

.ats-label {
    display: inline-block;

    padding: 4px 8px;

    margin-bottom: 11px;

    border-radius: 12px;

    background: #f0ebff;

    color: #6535df;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.5px;
}

.ats-content h2 {
    color: #17213d;

    font-size: 21px;

    margin-bottom: 7px;
}

.ats-content p {
    max-width: 380px;

    color: #68748b;

    font-size: 11px;

    line-height: 1.55;

    margin-bottom: 16px;
}

.ats-features {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 8px 15px;

    margin-bottom: 22px;
}

.ats-features span {
    color: #4e5870;

    font-size: 9px;
    font-weight: 600;
}

.ats-features span::first-letter {
    color: #6535df;
}

.ats-content .btn {
    font-size: 10px;

    padding: 9px 15px;
}


/* ATS VISUAL */

.ats-visual {
    position: absolute;

    right: 25px;
    top: 50%;

    width: 205px;

    transform: translateY(-50%);
}

.cv-paper {
    position: relative;

    width: 145px;
    height: 190px;

    margin-left: auto;

    padding: 18px 14px;

    border: 1px solid #ddd8f5;

    background: #ffffff;

    box-shadow:
        10px 10px 0 rgba(101, 53, 223, 0.08),
        0 12px 25px rgba(44, 31, 100, 0.12);

    transform: rotate(3deg);
}

.cv-paper::before {
    content: "";

    position: absolute;

    left: 14px;
    top: 13px;

    width: 38px;
    height: 6px;

    border-radius: 3px;

    background: #6535df;
}

.cv-line {
    width: 100%;
    height: 4px;

    margin-bottom: 7px;

    border-radius: 3px;

    background: #e5e9f2;
}

.cv-line.large {
    width: 60%;

    margin-top: 12px;

    background: #cfd5e3;
}

.cv-line.short {
    width: 68%;
}

.cv-section {
    width: 35%;

    height: 5px;

    margin: 13px 0 8px;

    border-radius: 3px;

    background: #d9d0ff;
}


/* =========================================================
   EXCLUSIVE BENEFITS
========================================================= */

.exclusive-section {
    background: #ffffff;
}

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.feature-card {
    padding: 26px;

    border: 1px solid #e7ebf3;

    border-radius: 12px;

    background: #ffffff;

    text-align: center;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(35, 65, 110, 0.08);
}

.feature-icon {
    width: 49px;
    height: 49px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 13px;

    border-radius: 13px;

    background: #edf4ff;

    font-size: 21px;
}

.feature-card h3 {
    color: #18223d;

    font-size: 14px;

    margin-bottom: 7px;
}

.feature-card p {
    color: #68748b;

    font-size: 10px;

    line-height: 1.55;
}


/* =========================================================
   STATS
========================================================= */

.stats-section {
    padding: 25px 0;

    background:
        linear-gradient(
            100deg,
            #1769e0,
            #3130d4
        );

    color: #ffffff;
}

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}

.stat {
    text-align: center;

    padding: 6px 15px;

    border-right: 1px solid rgba(255,255,255,0.25);
}

.stat:last-child {
    border-right: none;
}

.stat strong {
    display: block;

    font-size: 27px;

    line-height: 1.15;

    margin-bottom: 3px;
}

.stat span {
    font-size: 10px;

    opacity: 0.92;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials {
    background: #ffffff;
}

.testimonial-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.testimonial-card {
    padding: 22px;

    border: 1px solid #e6ebf3;

    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 5px 18px rgba(35, 65, 110, 0.04);
}

.stars {
    color: #f4a51c;

    font-size: 14px;

    letter-spacing: 1px;

    margin-bottom: 12px;
}

.testimonial-card > p {
    min-height: 67px;

    color: #4e5870;

    font-size: 10px;

    line-height: 1.55;

    margin-bottom: 16px;
}

.testimonial-person {
    display: flex;
    align-items: center;

    gap: 9px;
}

.avatar {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eaf2ff;

    color: #1769e0;

    font-size: 12px;
    font-weight: 800;
}

.testimonial-person strong {
    display: block;

    color: #17213d;

    font-size: 10px;
}

.testimonial-person span {
    display: block;

    color: #7a8498;

    font-size: 8px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    padding: 31px 0;

    background:
        linear-gradient(
            100deg,
            #1769e0,
            #3d25d4
        );

    color: #ffffff;
}

.final-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.final-cta h2 {
    font-size: 24px;

    line-height: 1.2;

    margin-bottom: 4px;
}

.final-cta p {
    color: rgba(255,255,255,0.87);

    font-size: 10px;
}

.btn-white {
    background: #ffffff;
    color: #1769e0;

    padding: 11px 23px;

    white-space: nowrap;
}

.btn-white:hover {
    background: #f4f7ff;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    padding: 55px 0;

    background: #f8faff;
}

.about-content {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    align-items: center;
}

.small-label {
    display: inline-block;

    color: #1769e0;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 8px;
}

.about-content h2 {
    color: #17213d;

    font-size: 27px;

    line-height: 1.2;

    letter-spacing: -0.7px;
}

.about-content h2 span {
    color: #1769e0;
}

.about-content > p {
    color: #68748b;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 42px 0 18px;

    background: #0c1932;

    color: #cbd3df;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr
        1fr;

    gap: 30px;
}

.footer-brand .logo {
    color: #ffffff;

    margin-bottom: 13px;
}

.footer-brand .logo-highlight {
    color: #5d9bff;
}

.footer-brand p {
    max-width: 245px;

    color: #9ca8ba;

    font-size: 10px;

    line-height: 1.6;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 7px;
}

.footer-column h4 {
    color: #ffffff;

    font-size: 11px;

    margin-bottom: 6px;
}

.footer-column a {
    color: #aab5c7;

    font-size: 9px;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    margin-top: 32px;

    padding-top: 14px;

    border-top: 1px solid rgba(255,255,255,0.10);

    color: #7f8da4;

    text-align: center;

    font-size: 8px;
}


/* =========================================================
   OLD / COMPATIBILITY CLASSES
   Keep these so existing simple sections don't immediately
   break if another page still uses the original classes.
========================================================= */

.section-light {
    background: #f7f9fc;
}

.section-title {
    text-align: center;

    max-width: 700px;

    margin: 0 auto 45px;
}

.section-title h2 {
    font-size: 32px;

    margin-bottom: 12px;
}

.section-title p {
    color: #667085;
}

.card-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}

.card {
    background: #ffffff;

    padding: 30px;

    border: 1px solid #e8ecf2;

    border-radius: 12px;
}

.card h3 {
    margin-bottom: 10px;

    font-size: 21px;
}

.card p {
    color: #667085;
}

.steps {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.step {
    text-align: center;

    padding: 25px;
}

.step-number {
    width: 46px;
    height: 46px;

    margin: 0 auto 16px;

    border-radius: 50%;

    background: #eaf2ff;

    color: #1769e0;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 700;
}

.cta {
    background: #172033;

    color: #ffffff;

    padding: 70px 0;

    text-align: center;
}

.cta h2 {
    font-size: 36px;

    margin-bottom: 15px;
}

.cta p {
    color: #cbd3df;

    margin-bottom: 28px;
}

.footer-content {
    display: flex;

    justify-content: space-between;

    gap: 20px;
}

.footer-links {
    display: flex;

    gap: 20px;
}

@media (min-width: 1051px) {

    .hero {
        padding-bottom: 10px;
    }

    .hero-trust-strip {
        margin-top: 16px;
        margin-bottom: 0;
    }

    .section {
        padding-top: 35px;
    }

    .section-heading {
        margin-bottom: 30px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .hero-grid {
        grid-template-columns:
            1fr
            1fr;

        gap: 25px;
    }

    .hero-left h1 {
        font-size: 48px;
    }

    .hero-trust-strip {
        grid-template-columns:
            1fr
            1fr;
    }

    .trust-item:nth-child(2) {
        border-right: none;
    }

    .trust-item:nth-child(3),
    .trust-item:nth-child(4) {
        border-top: 1px solid #edf0f5;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .ats-card {
        min-height: 300px;
    }

    .footer-grid {
        grid-template-columns:
            1.5fr
            1fr
            1fr
            1fr;
    }

    .footer-column:last-child {
        grid-column: 2;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .container {
        width: min(94%, 600px);
    }


    /* HEADER */

    .navbar {
        min-height: 64px;
    }

    .nav-links {
        display: none;
    }

    .header-actions {
        margin-left: auto;
    }

    .header-actions .btn {
        padding: 8px 12px;

        font-size: 11px;
    }

    .logo {
        font-size: 21px;
    }

    .logo-mark {
        width: 32px;
        height: 32px;

        font-size: 21px;
    }


    /* HERO */

    .hero {
        padding: 20px 0 28px;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .hero-left {
        padding: 20px 0 0;

        text-align: center;
    }

    .hero-badge {
        margin-bottom: 15px;
    }

    .hero-left h1 {
        max-width: 100%;

        font-size: clamp(38px, 11vw, 50px);

        letter-spacing: -1.5px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;

        font-size: 14px;
    }

    .hero-primary-action {
        display: flex;
        justify-content: center;
    }

    .hero-free-note {
        margin-left: 0;
    }


    /* MATCH CARD */

    .hero-right {
        width: 100%;
    }

    .offer-banner {
        margin-left: auto;
        margin-right: auto;
    }

    .match-preview-card {
        padding: 17px;
    }

    .match-top {
        grid-template-columns: 1fr;
    }

    .match-arrow {
        transform: rotate(90deg);

        height: 20px;
    }

    .match-score-area {
        position: relative;

        right: auto;
        top: auto;

        width: 100%;

        margin: 25px 0 20px;
    }

    .score-label {
        position: static;

        margin-bottom: 7px;
    }

    .match-factors {
        width: 100%;

        margin-top: 0;
    }


    /* TRUST */

    .hero-trust-strip {
        grid-template-columns: 1fr;

        padding: 8px;
    }

    .trust-item,
    .trust-item:nth-child(2),
    .trust-item:nth-child(3),
    .trust-item:nth-child(4) {
        border-right: none;

        border-bottom: 1px solid #edf0f5;

        padding: 10px;
    }

    .trust-item:last-child {
        border-bottom: none;
    }

    .ats-service {
        grid-template-columns:
            31px
            1fr
            auto;
    }


    /* SECTIONS */

    .section {
        padding: 55px 0;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .section-heading h2 {
        font-size: 27px;
    }


    /* PROCESS */

    .process-steps {
        display: grid;

        grid-template-columns: 1fr;

        gap: 8px;
    }

    .process-step {
        padding: 8px 20px 15px;
    }

    .process-step p {
        max-width: 280px;
    }

    .process-line {
        display: none;
    }


    /* BENEFITS */

    .ats-card {
        min-height: 360px;

        padding: 23px 20px;
    }

    .ats-content {
        width: 100%;
    }

    .ats-visual {
        opacity: 0.22;

        right: 15px;

        z-index: 1;
    }


    /* FEATURE GRID */

    .feature-grid {
        grid-template-columns: 1fr;
    }


    /* STATS */

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat {
        padding: 15px 8px;

        border-bottom: 1px solid rgba(255,255,255,0.20);
    }

    .stat:nth-child(2) {
        border-right: none;
    }

    .stat:nth-child(3),
    .stat:nth-child(4) {
        border-bottom: none;
    }

    .stat strong {
        font-size: 22px;
    }


    /* TESTIMONIALS */

    .testimonial-grid {
        grid-template-columns: 1fr;
    }


    /* FINAL CTA */

    .final-cta-content {
        flex-direction: column;

        text-align: center;
    }


    /* ABOUT */

    .about-content {
        grid-template-columns: 1fr;

        gap: 20px;

        text-align: center;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns:
            1fr 1fr;

        gap: 28px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-column:last-child {
        grid-column: auto;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .header-actions .btn-outline {
        display: none;
    }

    .hero-left h1 {
        font-size: 38px;
    }

    .hero-description {
        font-size: 13px;
    }

    .offer-banner {
        width: 100%;
    }

    .match-card-title {
        font-size: 13px;
    }

    .ats-service {
        grid-template-columns:
            31px
            1fr;

        position: relative;
    }

    .ats-button {
        grid-column: 2;

        width: max-content;
    }

    .ats-features {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat strong {
        font-size: 19px;
    }

    .stat span {
        font-size: 8px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-column:last-child {
        grid-column: auto;
    }

}

/* =========================================================
   SKILLSCAN PUBLIC HOMEPAGE
   DESKTOP WIDTH + READABILITY IMPROVEMENT
   ========================================================= */

@media (min-width: 1051px) {

    /* -----------------------------------------------------
       MAIN CONTAINER
       ----------------------------------------------------- */

    .container {
        width: min(1500px, 94%);
        max-width: 1500px;
        margin-left: auto;
        margin-right: auto;
    }


    /* -----------------------------------------------------
       HEADER / NAVIGATION
       ----------------------------------------------------- */

    .nav-links {
        gap: 25px;
    }

    .nav-links a {
        font-size: 15px;
    }

    .header-actions {
        gap: 10px;
    }


    /* -----------------------------------------------------
       HERO
       ----------------------------------------------------- */

.hero {
    padding: 30px 0 28px;
}

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
        gap: 45px;
        align-items: center;
    }

    .hero-left {
        padding-top: 15px;
    }

    .hero-left h1 {
        max-width: 700px;
        font-size: clamp(50px, 4.2vw, 66px);
        line-height: 1.06;
        letter-spacing: -2px;
    }

    .hero-description {
        max-width: 620px;
        font-size: 18px;
        line-height: 1.65;
    }


    /* -----------------------------------------------------
       TODAY'S OFFER
       ----------------------------------------------------- */

    .offer-banner {
        width: min(100%, 470px);
        min-height: 54px;
        padding: 9px 16px;
    }

    .offer-banner strong {
        font-size: 15px;
    }

    .offer-banner small {
        font-size: 11px;
    }


    /* -----------------------------------------------------
       JOB MATCH PREVIEW
       ----------------------------------------------------- */

    .match-preview-card {
        padding: 25px 28px 23px;
        min-height: 335px;
    }

    .match-card-title {
        font-size: 17px;
    }

    .match-role-card {
        padding: 14px 15px;
    }

    .match-role-card small {
        font-size: 11px;
    }

    .match-role-card strong {
        font-size: 14px;
    }

    .match-arrow {
        font-size: 20px;
    }

    .factor-header {
        font-size: 11px;
    }

    .factor-header strong {
        font-size: 11px;
    }

    .score-label {
        font-size: 11px;
    }

    .score-value {
        font-size: 25px;
    }

    .score-ring {
        width: 105px;
        height: 105px;
    }


    /* -----------------------------------------------------
       TRUST STRIP
       ----------------------------------------------------- */

.hero-trust-strip {
    margin-top: 20px;
    padding: 15px 20px;
}

    .trust-item {
        min-height: 62px;
        padding: 8px 18px;
    }

    .trust-item strong {
        font-size: 13px;
    }

    .trust-item span {
        font-size: 10px;
    }


    /* -----------------------------------------------------
       GENERAL SECTION HEADINGS
       ----------------------------------------------------- */

    .section-heading {
        margin-bottom: 42px;
    }

    .section-heading h2 {
        font-size: 40px;
        line-height: 1.15;
    }

    .section-heading p {
        font-size: 16px;
        line-height: 1.6;
    }


    /* -----------------------------------------------------
       HOW SKILLSCAN WORKS
       ----------------------------------------------------- */

    .process-steps {
        gap: 18px;
    }

    .process-step {
        padding: 8px 10px 18px;
    }

    .process-step h3 {
        font-size: 16px;
        margin-bottom: 7px;
    }

    .process-step p {
        max-width: 220px;
        font-size: 13px;
        line-height: 1.55;
    }

    .process-number {
        width: 52px;
        height: 52px;
        font-size: 17px;
    }

.section {
    padding: 55px 0;
}

.section-heading {
    margin-bottom: 35px;
}


    /* -----------------------------------------------------
       BENEFITS
       ----------------------------------------------------- */

    .benefits-section {
        padding-top: 70px;
    }

    .benefits-grid {
        gap: 30px;
    }

    .benefits-card {
        padding: 30px;
    }

    .benefits-card h2 {
        font-size: 25px;
    }

    .benefit-item {
        gap: 13px;
        margin-bottom: 18px;
    }

    .benefit-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .benefit-item strong {
        font-size: 13px;
    }

    .benefit-item p {
        font-size: 11px;
        line-height: 1.55;
    }


    /* -----------------------------------------------------
       ATS SERVICE CARD
       ----------------------------------------------------- */

    .ats-card {
        min-height: 380px;
        padding: 30px 32px;
    }

    .ats-content h2 {
        font-size: 27px;
    }

    .ats-content p {
        max-width: 450px;
        font-size: 13px;
        line-height: 1.65;
    }

    .ats-label {
        font-size: 10px;
    }

    .ats-features span {
        font-size: 11px;
    }

    .ats-content .btn {
        font-size: 12px;
        padding: 11px 18px;
    }


    /* -----------------------------------------------------
       EXCLUSIVE BENEFITS
       ----------------------------------------------------- */

    .feature-grid {
        gap: 28px;
    }

    .feature-card {
        padding: 32px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .feature-card h3 {
        font-size: 17px;
    }

    .feature-card p {
        font-size: 12px;
        line-height: 1.6;
    }


    /* -----------------------------------------------------
       TESTIMONIALS
       ----------------------------------------------------- */

    .testimonial-grid {
        gap: 25px;
    }

    .testimonial-card {
        padding: 28px;
    }

    .testimonial-card > p {
        min-height: 85px;
        font-size: 12px;
        line-height: 1.65;
    }

    .testimonial-person strong {
        font-size: 12px;
    }

    .testimonial-person span {
        font-size: 10px;
    }


    /* -----------------------------------------------------
       STATS
       ----------------------------------------------------- */

    .stats-section {
        padding: 34px 0;
    }

    .stat {
        padding: 10px 20px;
    }

    .stat strong {
        font-size: 34px;
    }

    .stat span {
        font-size: 12px;
    }


    /* -----------------------------------------------------
       FINAL CTA
       ----------------------------------------------------- */

    .final-cta {
        padding: 45px 0;
    }

    .final-cta h2 {
        font-size: 31px;
    }

    .final-cta p {
        font-size: 13px;
    }

    .btn-white {
        padding: 13px 27px;
    }


    /* -----------------------------------------------------
       ABOUT
       ----------------------------------------------------- */

    .about-section {
        padding: 70px 0;
    }

    .about-content {
        gap: 70px;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .about-content > p {
        font-size: 15px;
        line-height: 1.75;
    }


    /* -----------------------------------------------------
       FOOTER
       ----------------------------------------------------- */

    .site-footer {
        padding: 55px 0 22px;
    }

    .footer-brand p {
        max-width: 300px;
        font-size: 12px;
    }

    .footer-column h4 {
        font-size: 13px;
    }

    .footer-column a {
        font-size: 11px;
    }

    .footer-bottom {
        font-size: 10px;
    }

}