.page-home .main-content {
    max-width: none;
    padding: 0;
}

.home-hero {
    overflow: hidden;
    padding: 66px 28px 74px;
    background: linear-gradient(180deg, #f7fbff 0%, var(--white) 100%);
}

.home-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 36px;
    align-items: center;
    width: min(1320px, 100%);
    margin: 0 auto;
}

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

.home-hero h1 {
    margin: 0;
    color: var(--dark);
    font-size: 3rem;
    line-height: 1.12;
}

.home-hero p {
    margin: 18px 0 0;
    color: var(--text-secondary);
    font-size: 1.03rem;
    line-height: 1.8;
}

.home-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    margin-top: 30px;
    padding: 0 24px;
    border-radius: 8px;
    background: var(--brand-blue);
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(26, 167, 255, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.home-hero-btn i {
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

.home-hero-btn:hover {
    background: #1495e6;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(26, 167, 255, 0.28);
}

.home-hero-btn:hover i {
    transform: translateX(3px);
}

.home-hero-media {
    overflow: hidden;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 24px 60px rgba(28, 28, 28, 0.12);
}

.home-hero-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.home-section {
    padding: 70px 28px;
    background: var(--white);
}

.home-steps-section {
    background: linear-gradient(180deg, var(--white) 0%, #f7fbff 100%);
}

.home-section-inner {
    width: min(1320px, 100%);
    margin: 0 auto;
}

.home-steps-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 42px;
    align-items: start;
}

.home-section-header {
    max-width: 840px;
}

.home-steps-intro {
    position: sticky;
    top: 100px;
    max-width: 480px;
}

.home-section-header h2 {
    margin: 0;
    color: var(--dark);
    font-size: 2.45rem;
    line-height: 1.18;
}

.home-section-header p {
    margin: 16px 0 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.home-steps-list {
    position: relative;
    display: grid;
    gap: 18px;
}

.home-steps-list::before {
    content: "";
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 24px;
    width: 2px;
    background: rgba(26, 167, 255, 0.18);
}

.home-step-card {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 34px rgba(28, 28, 28, 0.07);
}

.home-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--brand-blue);
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 10px 22px rgba(26, 167, 255, 0.24);
    position: relative;
    z-index: 1;
}

.home-step-card h3 {
    margin: 0 0 14px;
    color: var(--dark);
    font-size: 1.2rem;
    line-height: 1.35;
}

.home-step-card p {
    margin: 12px 0 0;
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.75;
}

.home-section-action {
    margin-top: 30px;
}

.home-section-action .home-hero-btn {
    margin-top: 0;
}

.home-benefits-section {
    background: #f8fbff;
}

.home-benefits-heading {
    max-width: 900px;
}

.home-benefits-heading h2 {
    margin: 0;
    color: var(--dark);
    font-size: 2.35rem;
    line-height: 1.18;
}

.home-benefits-heading p {
    margin: 16px 0 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.home-benefits-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 34px;
    margin-top: 34px;
    border-top: 1px solid var(--border-light);
}

.home-benefit-row {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border-light);
}

.home-benefit-row:nth-child(5) {
    grid-column: span 2;
}

.home-benefit-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--brand-blue);
    color: var(--white);
    font-size: 0.86rem;
}

.home-benefit-row p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.75;
}

.home-benefit-row strong {
    color: var(--dark);
}

.home-templates-section {
    background: var(--white);
}

.home-templates-header {
    max-width: 860px;
    margin-bottom: 34px;
}

.home-templates-header h2 {
    margin: 0;
    color: var(--dark);
    font-size: 2.35rem;
    line-height: 1.18;
}

.home-templates-header p {
    margin: 16px 0 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.home-template-showcase {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.home-template-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: var(--white);
    color: inherit;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(28, 28, 28, 0.06);
}

.home-template-card:hover {
    color: inherit;
    text-decoration: none;
}

.home-template-card:focus-visible {
    outline: 3px solid rgba(26, 167, 255, 0.22);
    outline-offset: 4px;
}

.home-template-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: #f6f8fb;
    border-bottom: 1px solid var(--border-light);
}

.home-template-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.home-template-copy h3 {
    margin: 0 0 10px;
    color: var(--dark);
    font-size: 1.25rem;
}

.home-template-copy p {
    margin: 10px 0 0;
    color: var(--text-secondary);
    font-size: 0.97rem;
    line-height: 1.75;
}

.home-template-copy strong {
    color: var(--dark);
}

.home-template-copy p:last-of-type {
    margin-bottom: 0;
}

.home-template-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    margin-top: auto;
    padding: 0 16px;
    border-radius: 8px;
    background: var(--brand-blue);
    color: var(--white);
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.home-template-btn:hover {
    background: #1495e6;
    color: var(--white);
    transform: translateY(-2px);
}

.home-template-btn i {
    font-size: 0.86rem;
}

.home-templates-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.home-templates-footer p {
    max-width: 700px;
    margin: 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.home-templates-footer .home-template-btn {
    margin-top: 22px;
}

.home-ats-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(26, 167, 255, 0.08) 0%, rgba(255, 255, 255, 0.92) 46%, rgba(255, 235, 56, 0.18) 100%),
        var(--white);
}

.home-ats-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 42px;
    align-items: start;
}

.home-ats-copy h2 {
    max-width: 760px;
    margin: 0;
    color: var(--dark);
    font-size: 2.55rem;
    line-height: 1.14;
}

.home-ats-copy p {
    max-width: 820px;
    margin: 16px 0 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.home-ats-card {
    position: relative;
    overflow: hidden;
    padding: 34px 30px 30px;
    border: 1px solid rgba(26, 167, 255, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96)),
        var(--white);
    box-shadow: 0 24px 58px rgba(28, 28, 28, 0.11);
}

.home-ats-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 5px;
    width: 100%;
    background: var(--brand-blue);
}

.home-ats-card::after {
    content: "";
    position: absolute;
    top: 58px;
    right: 26px;
    bottom: 30px;
    width: 92px;
    border: 1px solid rgba(26, 167, 255, 0.12);
    border-radius: 8px;
    background: repeating-linear-gradient(
        180deg,
        rgba(26, 167, 255, 0.05) 0,
        rgba(26, 167, 255, 0.05) 1px,
        transparent 1px,
        transparent 13px
    );
}

.home-ats-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-ats-list li {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 15px;
    align-items: start;
    padding: 16px;
    border: 1px solid rgba(224, 224, 224, 0.78);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.65;
}

.home-ats-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--brand-blue);
    color: var(--white);
    font-size: 0.82rem;
    box-shadow: 0 10px 20px rgba(26, 167, 255, 0.2);
}

.home-ats-note {
    grid-column: 1 / -1;
    padding: 24px 28px;
    border: 1px solid rgba(255, 235, 56, 0.8);
    border-left: 5px solid var(--brand-yellow);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 34px rgba(28, 28, 28, 0.05);
}

.home-ats-note p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.75;
}

.home-seekers-section {
    background: #f8fbff;
}

.home-seekers-intro {
    max-width: 920px;
    margin-bottom: 34px;
}

.home-seekers-intro h2 {
    margin: 0;
    color: var(--dark);
    font-size: 2.35rem;
    line-height: 1.18;
}

.home-seekers-intro p {
    margin: 16px 0 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.home-seekers-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.home-seekers-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(26, 167, 255, 0.22);
    border-radius: 8px;
    background: var(--white);
    color: var(--brand-blue);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.home-seekers-link:hover {
    border-color: var(--brand-blue);
    color: #1495e6;
    transform: translateY(-2px);
}

.home-seekers-showcase {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
    gap: 34px;
    align-items: stretch;
}

.home-seekers-media {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border: 1px solid rgba(26, 167, 255, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 246, 248, 0.94)),
        #f4f6f8;
    box-shadow: 0 18px 42px rgba(28, 28, 28, 0.08);
}

.home-seeker-preview {
    position: absolute;
    display: block;
    height: auto;
    border: 1px solid rgba(28, 28, 28, 0.08);
    border-radius: 6px;
    background: var(--white);
    box-shadow: 0 18px 36px rgba(28, 28, 28, 0.16);
}

.home-seeker-preview-main {
    left: 32px;
    bottom: 34px;
    width: 68%;
}

.home-seeker-preview-small {
    top: 36px;
    right: 28px;
    width: 46%;
}

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

.home-seeker-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
    padding: 24px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(28, 28, 28, 0.05);
}

.home-seeker-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(26, 167, 255, 0.18);
    border-radius: 8px;
    background: rgba(26, 167, 255, 0.08);
    color: var(--brand-blue);
    font-size: 1.05rem;
}

.home-seeker-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.78;
}

.home-recruiter-section {
    background: linear-gradient(180deg, var(--white) 0%, #f8fbff 100%);
}

.home-recruiter-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 44px;
    align-items: center;
}

.home-recruiter-copy {
    max-width: 780px;
}

.home-recruiter-copy h2 {
    margin: 0;
    color: var(--dark);
    font-size: 2.35rem;
    line-height: 1.18;
}

.home-recruiter-copy p {
    margin: 16px 0 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.home-recruiter-media {
    position: relative;
    padding: 22px;
    overflow: hidden;
    border: 1px solid rgba(26, 167, 255, 0.14);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 20px 48px rgba(28, 28, 28, 0.09);
}

.home-recruiter-media::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--brand-blue);
}

.home-recruiter-image-shell {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f6f8;
}

.home-recruiter-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    object-position: top center;
}

.home-faq-section {
    background: #f8fbff;
}

.home-faq-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
    gap: 40px;
    align-items: start;
}

.home-faq-heading {
    position: sticky;
    top: 100px;
    padding: 28px;
    border: 1px solid rgba(26, 167, 255, 0.16);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 34px rgba(28, 28, 28, 0.05);
}

.home-faq-heading h2 {
    margin: 0;
    color: var(--dark);
    font-size: 2.25rem;
    line-height: 1.18;
}

.home-faq-list {
    display: grid;
    gap: 12px;
}

.home-faq-item {
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(28, 28, 28, 0.04);
}

.home-faq-item summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 58px 20px 22px;
    color: var(--dark);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.45;
    cursor: pointer;
    list-style: none;
}

.home-faq-item summary::-webkit-details-marker {
    display: none;
}

.home-faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(26, 167, 255, 0.1);
    color: var(--brand-blue);
    font-size: 1.2rem;
    line-height: 1;
    transform: translateY(-50%);
}

.home-faq-item[open] summary::after {
    content: "-";
    background: var(--brand-blue);
    color: var(--white);
}

.home-faq-item p {
    box-sizing: border-box;
    margin: 0;
    padding: 0 22px 22px;
    overflow: hidden;
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.75;
    transition: height 0.32s ease, opacity 0.24s ease;
    will-change: height, opacity;
}

@media (max-width: 991px) {
    .home-hero {
        padding: 52px 20px;
    }

    .home-hero-inner {
        grid-template-columns: 1fr;
    }

    .home-hero-copy {
        max-width: none;
    }

    .home-hero h1 {
        font-size: 2.5rem;
    }

    .home-section {
        padding: 54px 20px;
    }

    .home-steps-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .home-steps-intro {
        position: static;
        max-width: none;
    }

    .home-section-header h2 {
        font-size: 2rem;
    }

    .home-template-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-templates-footer {
        display: grid;
    }

    .home-ats-layout {
        grid-template-columns: 1fr;
    }

    .home-ats-copy h2 {
        font-size: 2rem;
    }

    .home-ats-note {
        grid-column: auto;
    }

    .home-seekers-showcase {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .home-seekers-media {
        min-height: 480px;
    }

    .home-seekers-intro h2 {
        font-size: 2rem;
    }

    .home-recruiter-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .home-recruiter-copy {
        max-width: none;
    }

    .home-recruiter-copy h2 {
        font-size: 2rem;
    }

    .home-faq-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .home-faq-heading {
        position: static;
    }

    .home-faq-heading h2 {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .home-hero {
        padding: 38px 14px;
    }

    .home-hero h1 {
        font-size: 2rem;
    }

    .home-hero p {
        font-size: 0.96rem;
    }

    .home-hero-btn {
        width: 100%;
    }

    .home-hero-image {
        aspect-ratio: 16 / 11;
    }

    .home-section {
        padding: 42px 14px;
    }

    .home-section-header h2 {
        font-size: 1.7rem;
    }

    .home-step-card {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 14px;
        padding: 20px;
    }

    .home-step-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .home-steps-list::before {
        left: 21px;
    }

    .home-benefits-checklist {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .home-benefit-row,
    .home-benefit-row:nth-child(5) {
        grid-column: auto;
    }

    .home-benefit-row {
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 14px;
        padding: 18px 0;
    }

    .home-benefit-check {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .home-templates-header h2 {
        font-size: 1.7rem;
    }

    .home-template-showcase {
        grid-template-columns: 1fr;
    }

    .home-template-copy {
        padding: 18px;
    }

    .home-template-image {
        aspect-ratio: 16 / 10;
    }

    .home-ats-copy h2 {
        font-size: 1.7rem;
    }

    .home-ats-card,
    .home-ats-note {
        padding: 20px;
    }

    .home-ats-list li {
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 12px;
    }

    .home-ats-check {
        width: 32px;
        height: 32px;
    }

    .home-seekers-intro h2 {
        font-size: 1.7rem;
    }

    .home-seekers-grid {
        grid-template-columns: 1fr;
    }

    .home-seekers-media {
        min-height: 380px;
    }

    .home-seeker-preview-main {
        left: 18px;
        bottom: 22px;
        width: 72%;
    }

    .home-seeker-preview-small {
        top: 24px;
        right: 16px;
        width: 48%;
    }

    .home-seeker-card {
        padding: 20px;
    }

    .home-seeker-icon {
        width: 42px;
        height: 42px;
        font-size: 0.95rem;
    }

    .home-recruiter-copy h2 {
        font-size: 1.7rem;
    }

    .home-recruiter-media {
        padding: 22px;
    }

    .home-recruiter-image-shell,
    .home-recruiter-image {
        min-height: 340px;
    }

    .home-faq-heading {
        padding: 20px;
    }

    .home-faq-heading h2 {
        font-size: 1.7rem;
    }

    .home-faq-item summary {
        padding: 18px 54px 18px 18px;
        font-size: 0.96rem;
    }

    .home-faq-item p {
        padding: 0 18px 18px;
    }

}
