:root {
    --bg: #ffffff;
    --bg-soft: #f7f9fc;
    --card-bg: #ffffff;
    --card-border: #e7ecf3;
    --text: #1f2937;
    --text-soft: #667085;
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --success-bg: #eefbf3;
    --success-text: #1f8f55;
    --shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --container: 1180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* HERO */
.hero {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    padding: 60px 0 40px;
    border-bottom: 1px solid #edf2f7;
}

.hero__content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.hero__badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    color: #1d4ed8;
    font-size: 13px;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 14px;
    color: #111827;
}

.hero p {
    font-size: 15px;
    color: var(--text-soft);
    max-width: 700px;
    margin: 0 auto;
}

.hero__stats {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.stat-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 16px 22px;
    min-width: 150px;
    box-shadow: var(--shadow);
}

.stat-card strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.stat-card span {
    font-size: 13px;
    color: var(--text-soft);
}

/* SECTION */
.jobs-section {
    padding: 40px 0 80px;
    background: #ffffff;
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-heading__label {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #374151;
    font-size: 12px;
    margin-bottom: 12px;
}

.section-heading h2 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111827;
}

.section-heading p {
    font-size: 15px;
    color: var(--text-soft);
}

/* GRID */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

/* CARD */
.job-card {
    display: flex;
    flex-direction: column;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.job-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 22px 0;
    gap: 12px;
}

.job-tag {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--success-bg);
    color: var(--success-text);
    font-size: 12px;
    font-weight: 600;
}

.job-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    color: var(--primary);
    border: 1px solid #dbeafe;
    flex-shrink: 0;
}

.job-icon svg {
    width: 22px;
    height: 22px;
}

.job-card__content {
    padding: 16px 22px 20px;
    flex: 1;
}

.job-card__content h3 {
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111827;
}

.job-subtitle {
    font-size: 14px;
    color: #475467;
    margin-bottom: 10px;
    font-weight: 600;
}

.job-description {
    font-size: 14px;
    color: var(--text-soft);
    margin-bottom: 18px;
}

.job-meta {
    display: grid;
    gap: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid #edf2f7;
    background: #fafbfd;
    border-radius: 12px;
}

.meta-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #344054;
    border: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.meta-icon svg {
    width: 18px;
    height: 18px;
}

.meta-item small {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 2px;
}

.meta-item strong {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.job-card__footer {
    padding: 0 22px 22px;
}

.job-button {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.25s ease, transform 0.25s ease;
}

.job-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.arrow {
    width: 16px;
    height: 16px;
    display: inline-flex;
}

.arrow svg {
    width: 16px;
    height: 16px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 28px;
    }

    .section-heading h2 {
        font-size: 24px;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

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

    .hero {
        padding: 44px 0 30px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p,
    .section-heading p {
        font-size: 14px;
    }

    .job-card__top,
    .job-card__content,
    .job-card__footer {
        padding-left: 16px;
        padding-right: 16px;
    }

    .job-card__top {
        padding-top: 16px;
    }

    .job-card__footer {
        padding-bottom: 16px;
    }

    .job-card__content h3 {
        font-size: 19px;
    }

    .job-description,
    .job-subtitle,
    .meta-item strong {
        font-size: 13px;
    }
}