/* =========================================================
   HRCLARITY LANDING PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.hc-hero {
    position: relative;
    overflow: hidden;

    padding: 105px 0 95px;

    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(37, 99, 235, .13),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fafc 100%
        );
}

.hc-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.hc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 7px 13px;
    margin-bottom: 20px;

    border: 1px solid #dbeafe;
    border-radius: 50px;

    background: #eff6ff;
    color: var(--hc-primary);

    font-size: 13px;
    font-weight: 700;
}

.hc-hero h1 {
    margin-bottom: 22px;

    color: var(--hc-dark);

    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.04;
    letter-spacing: -2.5px;
    font-weight: 800;
}

.hc-hero h1 span {
    color: var(--hc-primary);
}

.hc-hero-description {
    max-width: 600px;
    margin-bottom: 30px;

    color: var(--hc-muted);

    font-size: 18px;
    line-height: 1.75;
}

.hc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.hc-hero-note {
    color: var(--hc-muted);
    font-size: 13px;
}


/* =========================================================
   DASHBOARD PREVIEW
========================================================= */

.hc-dashboard-preview {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid var(--hc-border);
    border-radius: 20px;

    box-shadow: var(--hc-shadow-lg);

    transform:
        perspective(1200px)
        rotateY(-3deg)
        rotateX(2deg);
}

.hc-preview-topbar {
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 18px;

    border-bottom: 1px solid var(--hc-border);
}

.hc-preview-brand {
    color: var(--hc-dark);
    font-weight: 800;
}

.hc-preview-dots {
    display: flex;
    gap: 5px;
}

.hc-preview-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #cbd5e1;
}

.hc-preview-body {
    display: grid;
    grid-template-columns: 150px 1fr;
    min-height: 390px;
}

.hc-preview-sidebar {
    padding: 18px 12px;

    background: #f8fafc;

    border-right: 1px solid var(--hc-border);
}

.hc-preview-menu {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.hc-preview-menu div {
    padding: 9px 10px;

    border-radius: 7px;

    color: #64748b;

    font-size: 11px;
}

.hc-preview-menu .active {
    background: #eff6ff;
    color: var(--hc-primary);
    font-weight: 700;
}

.hc-preview-content {
    padding: 22px;
}

.hc-preview-content h4 {
    margin-bottom: 18px;

    color: var(--hc-dark);

    font-size: 18px;
}

.hc-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.hc-stat-card {
    padding: 15px;

    border: 1px solid var(--hc-border);
    border-radius: 12px;

    background: #ffffff;
}

.hc-stat-card small {
    display: block;
    margin-bottom: 5px;

    color: var(--hc-muted);
    font-size: 9px;
}

.hc-stat-card strong {
    color: var(--hc-dark);
    font-size: 22px;
}

.hc-preview-list {
    margin-top: 20px;
}

.hc-preview-list-title {
    margin-bottom: 10px;

    color: var(--hc-dark);

    font-size: 12px;
    font-weight: 700;
}

.hc-preview-document {
    display: flex;
    justify-content: space-between;
    gap: 10px;

    padding: 10px 0;

    border-bottom: 1px solid #f1f5f9;

    font-size: 10px;
}

.hc-document-name {
    color: var(--hc-dark);
    font-weight: 600;
}

.hc-document-user {
    color: var(--hc-muted);
}


/* =========================================================
   TRUST BAR
========================================================= */

.hc-trust {
    padding: 28px 0;

    border-bottom: 1px solid var(--hc-border);
}

.hc-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.hc-trust-item {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   FEATURE CARDS
========================================================= */

.hc-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.hc-feature-card {
    padding: 28px;

    background: #ffffff;

    border: 1px solid var(--hc-border);
    border-radius: 20px;

    transition: var(--hc-transition);
}

.hc-feature-card:hover {
    border-color: #bfdbfe;

    transform: translateY(-5px);

    box-shadow: var(--hc-shadow-md);
}

.hc-feature-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 12px;

    background: #eff6ff;
    color: var(--hc-primary);

    font-size: 21px;
}

.hc-feature-card h3 {
    margin-bottom: 10px;

    color: var(--hc-dark);

    font-size: 18px;
}

.hc-feature-card p {
    color: var(--hc-muted);
    font-size: 14px;
}


/* =========================================================
   DOCUMENT GENERATOR
========================================================= */

.hc-generator {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 25px;

    padding: 25px;

    background: #ffffff;

    border: 1px solid var(--hc-border);
    border-radius: 22px;

    box-shadow: var(--hc-shadow-md);
}

.hc-generator-panel {
    padding: 10px;
}

.hc-generator-form {
    padding: 24px;

    border-radius: 16px;

    background: var(--hc-bg);
}

.hc-generator-form h3 {
    margin-bottom: 20px;

    color: var(--hc-dark);

    font-size: 20px;
}

.hc-form-group {
    margin-bottom: 15px;
}

.hc-form-group label {
    display: block;

    margin-bottom: 6px;

    color: var(--hc-dark);

    font-size: 12px;
    font-weight: 700;
}

.hc-form-control {
    width: 100%;

    padding: 11px 12px;

    border: 1px solid var(--hc-border);
    border-radius: 9px;

    outline: none;

    background: #ffffff;

    color: var(--hc-dark);

    font-size: 13px;
}

.hc-form-control:focus {
    border-color: var(--hc-primary);

    box-shadow:
        0 0 0 3px rgba(37, 99, 235, .10);
}

.hc-document-preview {
    min-height: 450px;

    padding: 35px;

    background: #ffffff;

    border: 1px solid var(--hc-border);
    border-radius: 12px;

    box-shadow: var(--hc-shadow-sm);
}

.hc-paper-company {
    margin-bottom: 30px;

    text-align: center;

    color: var(--hc-dark);

    font-size: 17px;
    font-weight: 800;
}

.hc-paper-title {
    margin-bottom: 30px;

    text-align: center;

    color: var(--hc-dark);

    font-size: 17px;
    font-weight: 800;
}

.hc-paper-text {
    color: #475569;

    font-size: 13px;
    line-height: 1.9;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.hc-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.hc-step {
    padding: 25px;

    text-align: center;
}

.hc-step-number {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 18px;

    border-radius: 50%;

    background: #eff6ff;
    color: var(--hc-primary);

    font-weight: 800;
}

.hc-step h3 {
    margin-bottom: 8px;

    color: var(--hc-dark);

    font-size: 17px;
}

.hc-step p {
    color: var(--hc-muted);
    font-size: 14px;
}


/* =========================================================
   HR TOOLS
========================================================= */

.hc-tool-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.hc-tool-card {
    padding: 20px 15px;

    border: 1px solid var(--hc-border);
    border-radius: 14px;

    background: #ffffff;

    text-align: center;

    transition: var(--hc-transition);
}

.hc-tool-card:hover {
    border-color: #bfdbfe;
    transform: translateY(-3px);
}

.hc-tool-card .icon {
    margin-bottom: 10px;
    font-size: 24px;
}

.hc-tool-card h4 {
    color: var(--hc-dark);
    font-size: 13px;
}


/* =========================================================
   PRICING
========================================================= */

.hc-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.hc-price-card {
    position: relative;

    padding: 28px;

    background: #ffffff;

    border: 1px solid var(--hc-border);
    border-radius: 18px;
}

.hc-price-card.featured {
    border: 2px solid var(--hc-primary);
    box-shadow: var(--hc-shadow-md);
}

.hc-price-card h3 {
    color: var(--hc-dark);
    font-size: 18px;
}

.hc-price {
    margin: 15px 0;

    color: var(--hc-dark);

    font-size: 34px;
    font-weight: 800;
}

.hc-price span {
    color: var(--hc-muted);
    font-size: 12px;
    font-weight: 500;
}

.hc-price-features {
    margin: 20px 0;
    padding: 0;

    list-style: none;
}

.hc-price-features li {
    padding: 7px 0;

    color: var(--hc-muted);

    font-size: 13px;
}


/* =========================================================
   CTA
========================================================= */

.hc-cta {
    padding: 70px 30px;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            #1d4ed8,
            #4f46e5
        );

    text-align: center;

    color: #ffffff;
}

.hc-cta h2 {
    margin-bottom: 14px;

    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;

    font-weight: 800;
}

.hc-cta p {
    max-width: 650px;

    margin: 0 auto 25px;

    color: rgba(255,255,255,.82);
}


/* =========================================================
   FOOTER
========================================================= */

.hc-footer {
    padding: 65px 0 25px;

    background: var(--hc-dark);

    color: #ffffff;
}

.hc-footer .hc-logo {
    color: #ffffff;
}

.hc-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.hc-footer h4 {
    margin-bottom: 18px;

    color: #ffffff;

    font-size: 14px;
}

.hc-footer p,
.hc-footer a {
    color: #94a3b8;
    font-size: 13px;
}

.hc-footer a {
    display: block;
    margin-bottom: 10px;
}

.hc-footer a:hover {
    color: #ffffff;
}

.hc-footer-bottom {
    display: flex;
    justify-content: space-between;

    gap: 15px;

    margin-top: 50px;
    padding-top: 20px;

    border-top: 1px solid #1e293b;

    color: #64748b;

    font-size: 12px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .hc-hero-grid {
        gap: 45px;
    }

    .hc-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 992px) {

    .hc-hero-grid {
        grid-template-columns: 1fr;
    }

    .hc-dashboard-preview {
        transform: none;
    }

    .hc-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hc-generator {
        grid-template-columns: 1fr;
    }

    .hc-tool-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hc-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    .hc-hero {
        padding: 70px 0;
    }

    .hc-hero h1 {
        font-size: clamp(40px, 11vw, 58px);
        letter-spacing: -1.5px;
    }

    .hc-hero-description {
        font-size: 16px;
    }

    .hc-feature-grid,
    .hc-steps,
    .hc-pricing-grid {
        grid-template-columns: 1fr;
    }

    .hc-tool-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hc-preview-body {
        grid-template-columns: 1fr;
    }

    .hc-preview-sidebar {
        display: none;
    }

    .hc-stat-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hc-footer-grid {
        grid-template-columns: 1fr;
    }

    .hc-footer-bottom {
        flex-direction: column;
    }

}

@media (max-width: 520px) {

    .hc-hero-actions {
        flex-direction: column;
    }

    .hc-hero-actions .btn-hc {
        width: 100%;
    }

    .hc-stat-grid {
        grid-template-columns: 1fr;
    }

    .hc-document-preview {
        padding: 22px;
    }

    .hc-generator {
        padding: 12px;
    }

    .hc-tool-grid {
        grid-template-columns: 1fr 1fr;
    }

}