body {
    font-family: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #111827;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-top: 62px;
}

.btn-outline {
    background: transparent;
    color: #111827;
    border: 1px solid #e5e7eb;
}

.btn-outline:hover {
    border-color: #dc2626;
    color: #dc2626;
}

.btn-lg {
    height: 46px;
    padding: 0 24px;
    font-size: 15px;
    border-radius: 10px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 11px;
    border-radius: 99px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    font-size: 12px;
    font-weight: 600;
    color: #dc2626;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(26px, 3.6vw, 44px);
    font-weight: 700;
    color: #111827;
    letter-spacing: -.035em;
    line-height: 1.12;
    margin-bottom: 14px;
}

.section-sub {
    font-size: 16.5px;
    color: #6b7280;
    line-height: 1.7;
}


.hero {
    background: linear-gradient(180deg, #fff6f5 0%, #fff 60%);
    text-align: center;
    padding: 100px 28px 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 99px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    font-size: 12px;
    font-weight: 600;
    color: #dc2626;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    color: #111827;
    letter-spacing: -.04em;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-desc {
    font-size: 18px;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    color: #9ca3af;
    margin-top: 32px;
}

.breadcrumb a {
    color: #000;
    transition: color .15s;
}

.breadcrumb a:hover {
    color: #dc2626;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #e5e7eb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 64px;
}

.stat-item {
    background: #fff;
    padding: 32px;
    text-align: center;
}

.stat-num {
    font-size: 36px;
    font-weight: 700;
    color: #dc2626;
    letter-spacing: -.04em;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: #6b7280;
    margin-top: 6px;
}

@media(max-width:640px) {
    .stats-bar {
        grid-template-columns: 1fr;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.feat-card {
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 32px;
    transition: border-color .2s, box-shadow .2s;
}

.feat-card:hover {
    border-color: #fecaca;
    box-shadow: 0 4px 24px rgba(220, 38, 38, .06);
}

.feat-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    margin-bottom: 18px;
}

.feat-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    letter-spacing: -.02em;
}

.feat-card-desc {
    font-size: 14.5px;
    color: #6b7280;
    line-height: 1.65;
}

@media(max-width:768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.workflow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 56px;
    position: relative;
}

.workflow::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 8px);
    right: calc(12.5% + 8px);
    height: 1px;
    background: #fecaca;
    z-index: 0;
}

.workflow-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.workflow-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #dc2626;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(220, 38, 38, .3);
}

.workflow-step-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.workflow-step-desc {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.65;
}

@media(max-width:768px) {
    .workflow {
        grid-template-columns: repeat(2, 1fr);
    }

    .workflow::before {
        display: none;
    }
}

@media(max-width:480px) {
    .workflow {
        grid-template-columns: 1fr;
    }
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
}

.benefit-check {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fef2f2;
    border: 1px solid #fecaca;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    color: #dc2626;
}

.benefit-text-title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 3px;
}

.benefit-text-desc {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.55;
}

@media(max-width:640px) {
    .benefits-list {
        grid-template-columns: 1fr;
    }
}

.apply-section {
    background: #f9fafb;
    border-radius: 24px;
    padding: 64px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

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

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

.form-group label {
    font-size: 13.5px;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 9px;
    font-size: 14.5px;
    font-family: inherit;
    color: #111827;
    background: #fff;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, .08);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.skills-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.skill-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 99px;
    border: 1px solid #e5e7eb;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    background: #fff;
    transition: all .15s;
    user-select: none;
}

.skill-chip:hover {
    border-color: #fecaca;
    color: #dc2626;
}

.skill-chip.selected {
    background: #fef2f2;
    border-color: #fecaca;
    color: #dc2626;
}

.form-note {
    font-size: 12.5px;
    color: #9ca3af;
    margin-top: 4px;
}

@media(max-width:640px) {
    .apply-section {
        padding: 32px 24px;
    }

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

.testimonial-wrap {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 48px;
    max-width: 760px;
    margin: 56px auto 0;
}

.testimonial-quote {
    font-size: 20px;
    color: #111827;
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 24px;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.testimonial-role-label {
    font-size: 13px;
    color: #9ca3af;
}

.other-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    margin-top: 40px;
    transition: all .2s;
    text-decoration: none;
}

.other-card:hover {
    border-color: #bfdbfe;
    background: #fff;
    box-shadow: 0 4px 20px rgba(59, 130, 246, .08);
}

/* Qualifiers Block */
.qualifiers-section {
    padding: clamp(60px, 8vw, 96px) 0;
}

.qualifiers-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.requirements-card {
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 20px;
    padding: clamp(24px, 4vw, 36px);
}

.requirements-title {
    font-size: 13px;
    font-weight: 700;
    color: #9ca3af;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.requirement-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    border: 1px solid;
}

.requirement-text {
    font-size: 14.5px;
    color: #374151;
    line-height: 1.5;
}

.requirement-bonus {
    font-weight: 600;
    color: #16a34a;
}

@media (max-width: 991px) {
    .qualifiers-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 640px) {
    .qualifiers-section {
        padding: 48px 0;
    }

    .benefits-list {
        gap: 12px;
        margin-top: 24px;
    }

    .benefit-item {
        padding: 16px;
    }
}